Skip to content

Commit

Permalink
Prepare v0.3.0-beta (#639)
Browse files Browse the repository at this point in the history
  • Loading branch information
richarddavison authored Oct 21, 2024
1 parent 7f0ff52 commit e1a0cb2
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 12 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
- Added buffer subarray
- Fix regression affecting @aws-sdk initalization performance
- Upgrade to latest version of QuickJS
- Support of require/importing JSON files
- Better CJS compatibility
- Basic Windows support
- Initial support for Node.js module resolution
- Improved multi-process test runner
- AWS SDK clients connection are now inited in background threads and in parallel
- `Event` class
- Updated dependencies
- Multiple bug fixes

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

Full list of changes:
https://github.com/awslabs/llrt/compare/v0.2.1-beta...v0.2.2-beta
https://github.com/awslabs/llrt/compare/v0.2.2-beta...v0.3.0-beta
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion llrt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llrt"
version = "0.2.2-beta"
version = "0.3.0-beta"
edition = "2021"
license-file = "LICENSE"

Expand Down
2 changes: 1 addition & 1 deletion llrt_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llrt_core"
version = "0.2.2-beta"
version = "0.3.0-beta"
edition = "2021"
license-file = "LICENSE"

Expand Down
4 changes: 2 additions & 2 deletions llrt_modules/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "llrt_modules"
description = "LLRT Modules for rquickjs"
version = "0.2.2-beta"
version = "0.3.0-beta"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/llrt"
Expand Down Expand Up @@ -69,7 +69,7 @@ __stream = ["buffer", "__bytearray-buffer"]
either = "1"
itoa = { version = "1", optional = true }
once_cell = { version = "1", optional = true }
llrt_utils = { version = "0.2.2-beta", path = "../llrt_utils", default-features = false, features = [
llrt_utils = { version = "0.3.0-beta", path = "../llrt_utils", default-features = false, features = [
"ctx",
] }
rquickjs = { git = "https://github.com/DelSkayn/rquickjs.git", rev = "3af3f46b13eb89a2694e5e4e2e73924a20fa9dd1", features = [
Expand Down
2 changes: 1 addition & 1 deletion llrt_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "llrt_utils"
description = "LLRT utilities"
version = "0.2.2-beta"
version = "0.3.0-beta"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/llrt"
Expand Down

0 comments on commit e1a0cb2

Please sign in to comment.