diff --git a/CHANGELOG.md b/CHANGELOG.md index b9c09d698b..c4eadf6d77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,8 @@ -- ES2023. New language feature including top-level await etc -- Increased Web-API compliance (encoding, url, etc) -- Renamed modules -- Support for extra CA certs (see README) -- Support for UTF-16 (BE/LE) encodings -- Typescript types for LLRT -- Increased cold start performance (8% to 20%) on "hello world" Lambda functions (ARM64, 128Mb memory) -- Minor performance updates -- Easier integration with external projects (LLRT as a crate) -- Updated dependencies +- Improved timer performance +- Basic Windows support +- Full SDK & No SDK prebuilt binaries A huge thanks to [all contributors](https://github.com/awslabs/llrt/graphs/contributors)! - Full list of changes: -https://github.com/awslabs/llrt/compare/v0.1.15-beta...v0.2.0-beta +https://github.com/awslabs/llrt/compare/v0.2.0-beta...v0.2.1-beta diff --git a/Cargo.lock b/Cargo.lock index 39fc15d2a6..fec8f579e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2555,7 +2555,7 @@ checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" [[package]] name = "llrt" -version = "0.2.0-beta" +version = "0.2.1-beta" dependencies = [ "chrono", "llrt_core", @@ -2567,7 +2567,7 @@ dependencies = [ [[package]] name = "llrt_core" -version = "0.2.0-beta" +version = "0.2.1-beta" dependencies = [ "async-trait", "brotlic", @@ -2614,7 +2614,7 @@ dependencies = [ [[package]] name = "llrt_modules" -version = "0.2.0-beta" +version = "0.2.1-beta" dependencies = [ "brotlic", "crc32c", @@ -2641,7 +2641,7 @@ dependencies = [ [[package]] name = "llrt_utils" -version = "0.2.0-beta" +version = "0.2.1-beta" dependencies = [ "base64-simd", "hex-simd", diff --git a/llrt/Cargo.toml b/llrt/Cargo.toml index 84f248e337..e38836f299 100644 --- a/llrt/Cargo.toml +++ b/llrt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "llrt" -version = "0.2.0-beta" +version = "0.2.1-beta" edition = "2021" license-file = "LICENSE" diff --git a/llrt_core/Cargo.toml b/llrt_core/Cargo.toml index fa4fdf538e..5defb95bad 100644 --- a/llrt_core/Cargo.toml +++ b/llrt_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "llrt_core" -version = "0.2.0-beta" +version = "0.2.1-beta" edition = "2021" license-file = "LICENSE" diff --git a/llrt_modules/Cargo.toml b/llrt_modules/Cargo.toml index 6181dc7132..06f21872aa 100644 --- a/llrt_modules/Cargo.toml +++ b/llrt_modules/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "llrt_modules" description = "LLRT Modules for rquickjs" -version = "0.2.0-beta" +version = "0.2.1-beta" edition = "2021" license = "Apache-2.0" repository = "https://github.com/awslabs/llrt" @@ -54,7 +54,7 @@ __stream = ["buffer", "__bytearray-buffer"] either = "1" itoa = { version = "1", optional = true } once_cell = { version = "1", optional = true } -llrt_utils = { version = "0.2.0-beta", path = "../llrt_utils", default-features = false, features = [ +llrt_utils = { version = "0.2.1-beta", path = "../llrt_utils", default-features = false, features = [ "ctx", ] } rquickjs = { version = "0.6", features = [ diff --git a/llrt_utils/Cargo.toml b/llrt_utils/Cargo.toml index bb13bd82cd..177e26c3c7 100644 --- a/llrt_utils/Cargo.toml +++ b/llrt_utils/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "llrt_utils" description = "LLRT utilities" -version = "0.2.0-beta" +version = "0.2.1-beta" edition = "2021" license = "Apache-2.0" repository = "https://github.com/awslabs/llrt" diff --git a/package.json b/package.json index 2ebb10c525..8a1061ef2a 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "./example/*" ], "license": "Apache-2.0", - "version": "1.0.0", + "version": "0.2.1-beta", "type": "module", "private": true, "prettier": {