Skip to content

Commit 3686779

Browse files
committed
release v0.11.0
1 parent d9ee2a0 commit 3686779

File tree

12 files changed

+37
-33
lines changed

12 files changed

+37
-33
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
[Unreleased]: https://github.com/Nugine/s3s/compare/v0.10.1...HEAD
10+
[Unreleased]: https://github.com/Nugine/s3s/compare/v0.11.0...HEAD
11+
12+
## [v0.11.0] - 2025-03-28
13+
14+
[v0.11.0]: https://github.com/Nugine/s3s/compare/v0.10.1...v0.11.0
1115

1216
Tracking in [#267](https://github.com/Nugine/s3s/issues/267).
1317

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.1"
1919
serde = { version = "1.0.219", features = ["derive"] }
2020
serde_json = { version = "1.0.140", features = ["preserve_order"] }
2121
serde_urlencoded = "0.7.1"
22-
s3s-model = { version = "0.11.0-rc.1", path = "../crates/s3s-model" }
22+
s3s-model = { version = "0.11.0", 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.11.0-rc.1"
3+
version = "0.11.0"
44
description = "S3 service adapter integrated with aws-sdk-s3"
55
readme = "../../README.md"
66
keywords = ["s3"]
@@ -19,7 +19,7 @@ aws-smithy-runtime-api = { version = "1.7.4", features = ["client", "http-1x"] }
1919
aws-smithy-types = { version = "1.3.0", features = ["http-body-1-x"] }
2020
aws-smithy-types-convert = { version = "0.60.9", features = ["convert-time"] }
2121
hyper = "1.6.0"
22-
s3s = { version = "0.11.0-rc.1", path = "../s3s" }
22+
s3s = { version = "0.11.0", path = "../s3s" }
2323
std-next = "0.1.8"
2424
sync_wrapper = "1.0.2"
2525
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.11.0-rc.1"
3+
version = "0.11.0"
44
description = "s3s test suite"
55
readme = "../../README.md"
66
keywords = ["s3"]
@@ -13,7 +13,7 @@ license.workspace = true
1313
workspace = true
1414

1515
[dependencies]
16-
s3s-test = { version = "0.11.0-rc.1", path = "../s3s-test" }
16+
s3s-test = { version = "0.11.0", path = "../s3s-test" }
1717
tracing = "0.1.41"
1818
aws-credential-types = "1.2.2"
1919
aws-sdk-s3 = "1.80.0"
@@ -25,4 +25,4 @@ default-features = false
2525
features = ["behavior-version-latest"]
2626

2727
[build-dependencies]
28-
s3s-test = { version = "0.11.0-rc.1", path = "../s3s-test" }
28+
s3s-test = { version = "0.11.0", 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.11.0-rc.1"
3+
version = "0.11.0"
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.8"
4444
numeric_cast = "0.3.0"
4545
path-absolutize = "3.1.1"
46-
s3s = { version = "0.11.0-rc.1", path = "../s3s" }
46+
s3s = { version = "0.11.0", path = "../s3s" }
4747
serde_json = "1.0.140"
4848
thiserror = "2.0.12"
4949
time = "0.3.41"
@@ -64,6 +64,6 @@ aws-config = { version = "1.6.1", default-features = false }
6464
aws-credential-types = { version = "1.2.2", features = ["test-util"] }
6565
aws-sdk-s3 = { version = "1.80.0", features = ["behavior-version-latest"] }
6666
once_cell = "1.21.2"
67-
s3s-aws = { version = "0.11.0-rc.1", path = "../s3s-aws" }
67+
s3s-aws = { version = "0.11.0", path = "../s3s-aws" }
6868
tokio = { version = "1.44.1", features = ["full"] }
6969
tracing-subscriber = { version = "0.3.19", 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.11.0-rc.1"
3+
version = "0.11.0"
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.11.0-rc.1"
3+
version = "0.11.0"
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.11.0-rc.1"
3+
version = "0.11.0"
44
description = "S3 Proxy"
55
readme = "../../README.md"
66
keywords = ["s3"]
@@ -26,8 +26,8 @@ hyper-util = { version = "0.1.10", features = [
2626
"http2",
2727
"tokio",
2828
] }
29-
s3s = { version = "0.11.0-rc.1", path = "../s3s" }
30-
s3s-aws = { version = "0.11.0-rc.1", path = "../s3s-aws" }
29+
s3s = { version = "0.11.0", path = "../s3s" }
30+
s3s-aws = { version = "0.11.0", path = "../s3s-aws" }
3131
tokio = { version = "1.44.1", features = ["full"] }
3232
tracing = "0.1.41"
3333
tracing-subscriber = { version = "0.3.19", 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.11.0-rc.1"
3+
version = "0.11.0"
44
description = "s3s test suite"
55
readme = "../../README.md"
66
keywords = ["s3"]

0 commit comments

Comments
 (0)