Skip to content

Commit f9f3b30

Browse files
Prepare 0.2.1-beta (#557)
1 parent c3dfce7 commit f9f3b30

File tree

7 files changed

+14
-22
lines changed

7 files changed

+14
-22
lines changed

CHANGELOG.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
- ES2023. New language feature including top-level await etc
2-
- Increased Web-API compliance (encoding, url, etc)
3-
- Renamed modules
4-
- Support for extra CA certs (see README)
5-
- Support for UTF-16 (BE/LE) encodings
6-
- Typescript types for LLRT
7-
- Increased cold start performance (8% to 20%) on "hello world" Lambda functions (ARM64, 128Mb memory)
8-
- Minor performance updates
9-
- Easier integration with external projects (LLRT as a crate)
10-
- Updated dependencies
1+
- Improved timer performance
2+
- Basic Windows support
3+
- Full SDK & No SDK prebuilt binaries
114

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

14-
157
Full list of changes:
16-
https://github.com/awslabs/llrt/compare/v0.1.15-beta...v0.2.0-beta
8+
https://github.com/awslabs/llrt/compare/v0.2.0-beta...v0.2.1-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.0-beta"
3+
version = "0.2.1-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.0-beta"
3+
version = "0.2.1-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.0-beta"
4+
version = "0.2.1-beta"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/llrt"
@@ -54,7 +54,7 @@ __stream = ["buffer", "__bytearray-buffer"]
5454
either = "1"
5555
itoa = { version = "1", optional = true }
5656
once_cell = { version = "1", optional = true }
57-
llrt_utils = { version = "0.2.0-beta", path = "../llrt_utils", default-features = false, features = [
57+
llrt_utils = { version = "0.2.1-beta", path = "../llrt_utils", default-features = false, features = [
5858
"ctx",
5959
] }
6060
rquickjs = { version = "0.6", 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.0-beta"
4+
version = "0.2.1-beta"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/llrt"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"./example/*"
44
],
55
"license": "Apache-2.0",
6-
"version": "1.0.0",
6+
"version": "0.2.1-beta",
77
"type": "module",
88
"private": true,
99
"prettier": {

0 commit comments

Comments
 (0)