Skip to content

Commit 4ba8c5c

Browse files
committed
release v0.12.0-rc.3
1 parent 1a550b1 commit 4ba8c5c

File tree

12 files changed

+33
-33
lines changed

12 files changed

+33
-33
lines changed

Cargo.lock

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

codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ regex = "1.11.3"
1919
serde = { version = "1.0.228", features = ["derive"] }
2020
serde_json = { version = "1.0.145", features = ["preserve_order"] }
2121
serde_urlencoded = "0.7.1"
22-
s3s-model = { version = "0.12.0-rc.2", path = "../crates/s3s-model" }
22+
s3s-model = { version = "0.12.0-rc.3", path = "../crates/s3s-model" }
2323
http = "1.3.1"

crates/s3s-aws/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s3s-aws"
3-
version = "0.12.0-rc.2"
3+
version = "0.12.0-rc.3"
44
description = "S3 service adapter integrated with aws-sdk-s3"
55
readme = "../../README.md"
66
keywords = ["s3"]
@@ -23,7 +23,7 @@ aws-smithy-runtime-api = { version = "1.9.0", features = ["client", "http-1x"] }
2323
aws-smithy-types = { version = "1.3.2", features = ["http-body-1-x"] }
2424
aws-smithy-types-convert = { version = "0.60.9", features = ["convert-time"] }
2525
hyper = "1.7.0"
26-
s3s = { version = "0.12.0-rc.2", path = "../s3s", default-features = false }
26+
s3s = { version = "0.12.0-rc.3", path = "../s3s", default-features = false }
2727
std-next = "0.1.9"
2828
sync_wrapper = "1.0.2"
2929
tracing = "0.1.41"

crates/s3s-e2e/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s3s-e2e"
3-
version = "0.12.0-rc.2"
3+
version = "0.12.0-rc.3"
44
description = "s3s test suite"
55
readme = "../../README.md"
66
keywords = ["s3"]
@@ -14,7 +14,7 @@ rust-version.workspace = true
1414
workspace = true
1515

1616
[dependencies]
17-
s3s-test = { version = "0.12.0-rc.2", path = "../s3s-test" }
17+
s3s-test = { version = "0.12.0-rc.3", path = "../s3s-test" }
1818
tracing = "0.1.41"
1919
aws-credential-types = "1.2.6"
2020
aws-sdk-s3 = "1.107.0"
@@ -30,4 +30,4 @@ default-features = false
3030
features = ["behavior-version-latest"]
3131

3232
[build-dependencies]
33-
s3s-test = { version = "0.12.0-rc.2", path = "../s3s-test" }
33+
s3s-test = { version = "0.12.0-rc.3", path = "../s3s-test" }

crates/s3s-fs/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s3s-fs"
3-
version = "0.12.0-rc.2"
3+
version = "0.12.0-rc.3"
44
description = "An experimental S3 server based on file system"
55
readme = "../../README.md"
66
keywords = ["s3"]
@@ -43,7 +43,7 @@ mime = "0.3.17"
4343
std-next = "0.1.9"
4444
numeric_cast = "0.3.0"
4545
path-absolutize = "3.1.1"
46-
s3s = { version = "0.12.0-rc.2", path = "../s3s" }
46+
s3s = { version = "0.12.0-rc.3", path = "../s3s" }
4747
serde_json = "1.0.145"
4848
thiserror = "2.0.17"
4949
time = "0.3.44"
@@ -67,6 +67,6 @@ futures-util = "0.3.31"
6767
hyper-util = { version = "0.1.17", features = ["server-auto", "server-graceful", "http1", "http2", "tokio"] }
6868
once_cell = "1.21.3"
6969
opendal = { version = "0.54.0", features = ["services-s3"] }
70-
s3s-aws = { version = "0.12.0-rc.2", path = "../s3s-aws" }
70+
s3s-aws = { version = "0.12.0-rc.3", path = "../s3s-aws" }
7171
tokio = { version = "1.47.1", features = ["full"] }
7272
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "time"] }

crates/s3s-model/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s3s-model"
3-
version = "0.12.0-rc.2"
3+
version = "0.12.0-rc.3"
44
description = "S3 Protocol Model"
55
readme = "../../README.md"
66
keywords = ["s3"]

crates/s3s-policy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s3s-policy"
3-
version = "0.12.0-rc.2"
3+
version = "0.12.0-rc.3"
44
description = "S3 Policy Language"
55
readme = "../../README.md"
66
keywords = ["s3"]

crates/s3s-proxy/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s3s-proxy"
3-
version = "0.12.0-rc.2"
3+
version = "0.12.0-rc.3"
44
description = "S3 Proxy"
55
readme = "../../README.md"
66
keywords = ["s3"]
@@ -27,8 +27,8 @@ hyper-util = { version = "0.1.17", features = [
2727
"http2",
2828
"tokio",
2929
] }
30-
s3s = { version = "0.12.0-rc.2", path = "../s3s" }
31-
s3s-aws = { version = "0.12.0-rc.2", path = "../s3s-aws" }
30+
s3s = { version = "0.12.0-rc.3", path = "../s3s" }
31+
s3s-aws = { version = "0.12.0-rc.3", path = "../s3s-aws" }
3232
tokio = { version = "1.47.1", features = ["full"] }
3333
tracing = "0.1.41"
3434
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "time"] }

crates/s3s-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s3s-test"
3-
version = "0.12.0-rc.2"
3+
version = "0.12.0-rc.3"
44
description = "s3s test suite"
55
readme = "../../README.md"
66
keywords = ["s3"]

crates/s3s-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ publish = false
1010
[dependencies]
1111
futures = "0.3.31"
1212
http = "1.3.1"
13-
s3s = { version = "0.12.0-rc.2", path = "../s3s", default-features = false }
13+
s3s = { version = "0.12.0-rc.3", path = "../s3s", default-features = false }
1414

1515
[lints]
1616
workspace = true

0 commit comments

Comments
 (0)