Skip to content

Commit e1a0cb2

Browse files
Prepare v0.3.0-beta (#639)
1 parent 7f0ff52 commit e1a0cb2

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
- Added buffer subarray
2-
- Fix regression affecting @aws-sdk initalization performance
1+
- Upgrade to latest version of QuickJS
2+
- Support of require/importing JSON files
3+
- Better CJS compatibility
4+
- Basic Windows support
5+
- Initial support for Node.js module resolution
6+
- Improved multi-process test runner
7+
- AWS SDK clients connection are now inited in background threads and in parallel
8+
- `Event` class
9+
- Updated dependencies
10+
- Multiple bug fixes
311

412
A huge thanks to [all contributors](https://github.com/awslabs/llrt/graphs/contributors)!
513

614
Full list of changes:
7-
https://github.com/awslabs/llrt/compare/v0.2.1-beta...v0.2.2-beta
15+
https://github.com/awslabs/llrt/compare/v0.2.2-beta...v0.3.0-beta

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

llrt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "llrt"
3-
version = "0.2.2-beta"
3+
version = "0.3.0-beta"
44
edition = "2021"
55
license-file = "LICENSE"
66

llrt_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "llrt_core"
3-
version = "0.2.2-beta"
3+
version = "0.3.0-beta"
44
edition = "2021"
55
license-file = "LICENSE"
66

llrt_modules/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llrt_modules"
33
description = "LLRT Modules for rquickjs"
4-
version = "0.2.2-beta"
4+
version = "0.3.0-beta"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/llrt"
@@ -69,7 +69,7 @@ __stream = ["buffer", "__bytearray-buffer"]
6969
either = "1"
7070
itoa = { version = "1", optional = true }
7171
once_cell = { version = "1", optional = true }
72-
llrt_utils = { version = "0.2.2-beta", path = "../llrt_utils", default-features = false, features = [
72+
llrt_utils = { version = "0.3.0-beta", path = "../llrt_utils", default-features = false, features = [
7373
"ctx",
7474
] }
7575
rquickjs = { git = "https://github.com/DelSkayn/rquickjs.git", rev = "3af3f46b13eb89a2694e5e4e2e73924a20fa9dd1", features = [

llrt_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llrt_utils"
33
description = "LLRT utilities"
4-
version = "0.2.2-beta"
4+
version = "0.3.0-beta"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/llrt"

0 commit comments

Comments
 (0)