Skip to content

Commit 7bacc4f

Browse files
authored
Merge pull request #44 from casual-simulation/update-version-and-changelog
build: Update version and changelog
2 parents 10334f8 + 17adbeb commit 7bacc4f

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## v0.10.3
4+
5+
### Date: 2/02/2024
6+
7+
### Changes:
8+
9+
- Make the minimum Node version 12
10+
- It's now possible to specify an object for `denoUnstable`, which can let you enable more fine-grained unstable flags.
11+
12+
```ts
13+
new DenoWorker(echoScript, {
14+
denoUnstable: {
15+
temporal: true,
16+
broadcastChannel: true,
17+
},
18+
});
19+
```
20+
321
## v0.10.2
422

523
### Date: 1/29/2024

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deno-vm",
3-
"version": "0.10.2",
3+
"version": "0.10.3",
44
"description": "A VM module that provides a secure runtime environment via Deno.",
55
"main": "./dist/cjs/index.js",
66
"types": "./dist/typings/index.d.ts",

0 commit comments

Comments
 (0)