Skip to content

Commit 1941ed2

Browse files
Prepare v0.5.1 beta (#823)
* Prepare release * Update changelog
1 parent f21875c commit 1941ed2

File tree

35 files changed

+154
-161
lines changed

35 files changed

+154
-161
lines changed

CHANGELOG.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
- Increased webcrypto compatibility
2-
- Native web streams (stage 1, full streaming support is coming soon)
3-
- Increased parallel fetch performance
4-
- DNS Cache
5-
- Upgraded dependencies
6-
- Bugfixes
7-
8-
A huge thanks to [all contributors](https://github.com/awslabs/llrt/graphs/contributors)!
1+
- Fix bug with @aws-crypto/utils package
92

103
Full list of changes:
11-
https://github.com/awslabs/llrt/compare/v0.4.0-beta...v0.5.0-beta
4+
https://github.com/awslabs/llrt/compare/v0.5.0-beta...v0.5.1-beta

Cargo.lock

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

libs/llrt_build/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_build"
33
description = "LLRT build helpers"
4-
version = "0.5.0-beta"
4+
version = "0.5.1-beta"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/llrt"

libs/llrt_compression/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_compression"
33
description = "LLRT compression helpers"
4-
version = "0.5.0-beta"
4+
version = "0.5.1-beta"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/llrt"

libs/llrt_context/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llrt_context"
33
description = "LLRT context helpers"
4-
version = "0.5.0-beta"
4+
version = "0.5.1-beta"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/llrt"
@@ -10,13 +10,13 @@ repository = "https://github.com/awslabs/llrt"
1010
rquickjs = { git = "https://github.com/DelSkayn/rquickjs.git", version = "0.9.0", features = [
1111
"futures",
1212
], default-features = false }
13-
llrt_utils = { version = "0.5.0-beta", path = "../llrt_utils", default-features = false }
13+
llrt_utils = { version = "0.5.1-beta", path = "../llrt_utils", default-features = false }
1414
tokio = { version = "1", features = ["sync"], default-features = false }
1515
tracing = "0.1"
1616

1717
[dev-dependencies]
18-
llrt_test = { version = "0.5.0-beta", path = "../llrt_test" }
18+
llrt_test = { version = "0.5.1-beta", path = "../llrt_test" }
1919
tokio = { version = "1", features = ["full"] }
2020

2121
[build-dependencies]
22-
llrt_build = { version = "0.5.0-beta", path = "../llrt_build" }
22+
llrt_build = { version = "0.5.1-beta", path = "../llrt_build" }

libs/llrt_encoding/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_encoding"
33
description = "LLRT encoding helpers"
4-
version = "0.5.0-beta"
4+
version = "0.5.1-beta"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/llrt"
@@ -13,4 +13,4 @@ phf = { version = "0.11", features = ["macros"] }
1313
memchr = "2"
1414

1515
[build-dependencies]
16-
llrt_build = { version = "0.5.0-beta", path = "../llrt_build" }
16+
llrt_build = { version = "0.5.1-beta", path = "../llrt_build" }

libs/llrt_json/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llrt_json"
33
description = "LLRT json helpers"
4-
version = "0.5.0-beta"
4+
version = "0.5.1-beta"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/llrt"
@@ -12,7 +12,7 @@ path = "src/lib.rs"
1212

1313
[dependencies]
1414
itoa = "1"
15-
llrt_utils = { version = "0.5.0-beta", path = "../llrt_utils", default-features = false }
15+
llrt_utils = { version = "0.5.1-beta", path = "../llrt_utils", default-features = false }
1616
rquickjs = { git = "https://github.com/DelSkayn/rquickjs.git", version = "0.9.0", default-features = false }
1717
ryu = "1"
1818
simd-json = { version = "0.14", default-features = false, features = [
@@ -21,11 +21,11 @@ simd-json = { version = "0.14", default-features = false, features = [
2121

2222
[dev-dependencies]
2323
criterion = "0.5"
24-
llrt_test = { version = "0.5.0-beta", path = "../llrt_test" }
24+
llrt_test = { version = "0.5.1-beta", path = "../llrt_test" }
2525
tokio = { version = "1", features = ["full"] }
2626

2727
[build-dependencies]
28-
llrt_build = { version = "0.5.0-beta", path = "../llrt_build" }
28+
llrt_build = { version = "0.5.1-beta", path = "../llrt_build" }
2929

3030
[[bench]]
3131
name = "json"

0 commit comments

Comments
 (0)