Skip to content

Commit

Permalink
release v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nugine committed Oct 8, 2023
1 parent 32aebef commit e2d0ce6
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions crates/s3s-aws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s3s-aws"
version = "0.7.2-dev"
version = "0.8.0"
edition = "2021"
description = "S3 service adapter integrated with aws-sdk-s3"
license = "Apache-2.0"
Expand All @@ -19,7 +19,7 @@ aws-smithy-types-convert = { version = "0.56.1", features = ["convert-time"] }
bytes = "1.4.0"
futures = { version = "0.3.28", default-features = false, features = ["std"] }
hyper = "0.14.27"
s3s = { version = "0.7.2-dev", path = "../s3s" }
s3s = { version = "0.8.0", path = "../s3s" }
sync_wrapper = "0.1.2"
tracing = "0.1.37"
transform-stream = "0.3.0"
6 changes: 3 additions & 3 deletions crates/s3s-fs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s3s-fs"
version = "0.7.2-dev"
version = "0.8.0"
edition = "2021"
description = "An experimental S3 server based on file system"
license = "Apache-2.0"
Expand Down Expand Up @@ -33,7 +33,7 @@ mime = "0.3.17"
nugine-rust-utils = "0.3.1"
numeric_cast = "0.2.1"
path-absolutize = "3.1.0"
s3s = { version = "0.7.2-dev", path = "../s3s" }
s3s = { version = "0.8.0", path = "../s3s" }
serde_json = "1.0.104"
sha1 = "0.10.5"
sha2 = "0.10.7"
Expand All @@ -53,6 +53,6 @@ aws-config = { version = "0.56.1", default-features = false }
aws-credential-types = { version = "0.56.1", features = ["test-util"] }
aws-sdk-s3 = "0.33.0"
once_cell = "1.18.0"
s3s-aws = { version = "0.7.2-dev", path = "../s3s-aws" }
s3s-aws = { version = "0.8.0", path = "../s3s-aws" }
tokio = { version = "1.31.0", features = ["full"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "time"] }
4 changes: 2 additions & 2 deletions crates/s3s-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ aws-credential-types = "0.56.1"
aws-sdk-s3 = "0.33.0"
clap = { version = "4.3.21", features = ["derive"] }
hyper = { version = "0.14.27", features = ["full"] }
s3s = { version = "0.7.2-dev", path = "../s3s" }
s3s-aws = { version = "0.7.2-dev", path = "../s3s-aws" }
s3s = { version = "0.8.0", path = "../s3s" }
s3s-aws = { version = "0.8.0", path = "../s3s-aws" }
tokio = { version = "1.31.0", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "time"] }
2 changes: 1 addition & 1 deletion crates/s3s/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s3s"
version = "0.7.2-dev"
version = "0.8.0"
edition = "2021"
description = "S3 Service Adapter"
license = "Apache-2.0"
Expand Down
12 changes: 6 additions & 6 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ install:
just install-s3s-proxy

sync-version:
cargo set-version -p s3s 0.7.2-dev
cargo set-version -p s3s-aws 0.7.2-dev
cargo set-version -p s3s-fs 0.7.2-dev
cargo set-version -p s3s 0.8.0
cargo set-version -p s3s-aws 0.8.0
cargo set-version -p s3s-fs 0.8.0

publish:
# cargo publish -p s3s
# cargo publish -p s3s-aws
# cargo publish -p s3s-fs
cargo publish -p s3s
cargo publish -p s3s-aws
cargo publish -p s3s-fs

0 comments on commit e2d0ce6

Please sign in to comment.