Skip to content

Commit 94a0ba6

Browse files
chore: bump to v1.3
1 parent 940efec commit 94a0ba6

File tree

4 files changed

+44
-5
lines changed

4 files changed

+44
-5
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,21 @@ This TypeScript package allows you to safely execute **JavaScript AND TypeScript
1818

1919
**[Find examples in the repository](https://github.com/sebastianwessel/quickjs/tree/main/example)**
2020

21+
## Version 1: Rolling Release
22+
23+
### Fast Lane - Fast Pace
24+
25+
Welcome to the first version of our npm package! This release follows a rolling release model, prioritizing rapid development and quick iterations. The approach is designed to deliver features swiftly, gather feedback promptly, and implement fixes without delay. This means you get the latest features and improvements as soon as they are ready, ensuring you always have access to the cutting-edge functionality.
26+
27+
Key aspects of our rolling release model:
28+
29+
- **Ship Fast:** Release new features and updates as soon as they are developed.
30+
- **Get Fast Feedback:** Your feedback is crucial. I listen and respond quickly to ensure the package meets your needs.
31+
- **Fix Quickly:** Bugs and issues are addressed promptly, minimizing any disruptions.
32+
- **Fast-Paced Development:** Our development cycle is agile, allowing us to adapt and evolve based on user input.
33+
34+
Stay tuned for frequent updates and enhancements.
35+
2136
## Basic Usage
2237

2338
Here's a simple example of how to use the package:

docs/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,21 @@ This TypeScript package allows you to safely execute **JavaScript and TypeScript
3131
- **Versatility**: Easily integrate with existing TypeScript projects.
3232
- **Simplicity**: User-friendly API for executing and managing JavaScript and TypeScript code in the sandbox.
3333

34+
## Version 1: Rolling Release
35+
36+
### Fast Lane - Fast Pace
37+
38+
Welcome to the first version of our npm package! This release follows a rolling release model, prioritizing rapid development and quick iterations. The approach is designed to deliver features swiftly, gather feedback promptly, and implement fixes without delay. This means you get the latest features and improvements as soon as they are ready, ensuring you always have access to the cutting-edge functionality.
39+
40+
Key aspects of our rolling release model:
41+
42+
- **Ship Fast:** Release new features and updates as soon as they are developed.
43+
- **Get Fast Feedback:** Your feedback is crucial. I listen and respond quickly to ensure the package meets your needs.
44+
- **Fix Quickly:** Bugs and issues are addressed promptly, minimizing any disruptions.
45+
- **Fast-Paced Development:** Our development cycle is agile, allowing us to adapt and evolve based on user input.
46+
47+
Stay tuned for frequent updates and enhancements.
48+
3449
## Basic Usage
3550

3651
Here's a simple example of how to use the package:

jsr.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"$schema": "https://jsr.io/schema/config-file.v1.json",
33
"name": "@sebastianwessel/quickjs",
4-
"version": "1.2.0",
4+
"version": "1.3.0",
55
"description": "A typescript package to execute JavaScript and TypeScript code in a webassembly quickjs sandbox",
6+
"keywords": ["quickjs", "sandbox", "typescript", "javascript", "webassembly"],
67
"exports": "./dist/esm/index.js",
78
"publish": {
89
"include": ["dist/**/*.js", "dist/**/*.d.ts", "README.md", "package.json"],

package.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sebastianwessel/quickjs",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "A typescript package to execute JavaScript and TypeScript code in a webassembly quickjs sandbox",
55
"type": "module",
66
"engines": {
@@ -20,10 +20,18 @@
2020
"package",
2121
"library"
2222
],
23-
"files": ["dist"],
23+
"files": [
24+
"dist"
25+
],
2426
"tshy": {
25-
"exclude": ["src/**/*.test.ts", "vendor"],
26-
"dialects": ["esm", "commonjs"],
27+
"exclude": [
28+
"src/**/*.test.ts",
29+
"vendor"
30+
],
31+
"dialects": [
32+
"esm",
33+
"commonjs"
34+
],
2735
"exports": {
2836
"./package.json": "./package.json",
2937
".": "./src/index.ts"

0 commit comments

Comments
 (0)