Skip to content

Commit

Permalink
Release new crate versions (#657)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Carl Jones <[email protected]>
  • Loading branch information
dannycjones authored Dec 1, 2023
1 parent 5bdf9dd commit 53543a5
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions mountpoint-s3-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## v0.6.1 (December 1, 2023)

### Breaking changes

* No breaking changes.

### Other changes

* Consume CRT bug fix for an issue where a large number of requests to S3 Express directory buckets could end up stuck waiting for initial S3 Express session to be created ([awslabs/aws-c-s3#384](https://github.com/awslabs/aws-c-s3/pull/384))

## v0.6.0 (November 28, 2023)

### Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions mountpoint-s3-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ name = "mountpoint-s3-client"
# - Make sure to also bump the `mountpoint-s3-crt` dependency if needed
# - Create a new Git tag `mountpoint-s3-client-0.x.y`
# - Run `cargo publish`
version = "0.6.0"
version = "0.6.1"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/mountpoint-s3"
description = "High-performance Amazon S3 client for Mountpoint for Amazon S3."

[dependencies]
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.5.0" }
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.5.1" }

async-trait = "0.1.57"
auto_impl = "1.0.1"
Expand Down
4 changes: 4 additions & 0 deletions mountpoint-s3-crt-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.5.1 (December 1, 2023)

* Update to latest CRT dependencies

## v0.5.0 (November 28, 2023)

* Update to latest CRT dependencies
Expand Down
2 changes: 1 addition & 1 deletion mountpoint-s3-crt-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "mountpoint-s3-crt-sys"
# - Pull request to bump version number and update CHANGELOG.md
# - Create a new Git tag `mountpoint-s3-crt-sys-0.x.y`
# - Run `cargo publish`
version = "0.5.0"
version = "0.5.1"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/mountpoint-s3"
Expand Down
5 changes: 4 additions & 1 deletion mountpoint-s3-crt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## v0.5.1 (December 1, 2023)

* Update to latest CRT dependencies

## v0.5.0 (November 28, 2023)

* Update to latest CRT dependencies
* Default exponential backoff value retries is now 500ms rather than 25ms ([awslabs/aws-c-io#612](https://github.com/awslabs/aws-c-io/pull/612))
* Renamed `s3::RequestType::Default` to `s3::RequestType::Unknown` to match CRT change ([#633](https://github.com/awslabs/mountpoint-s3/pull/633))

## v0.4.0 (November 21, 2023)
Expand Down
4 changes: 2 additions & 2 deletions mountpoint-s3-crt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ name = "mountpoint-s3-crt"
# - Make sure to also bump the `mountpoint-s3-crt-sys` dependency if needed
# - Create a new Git tag `mountpoint-s3-crt-0.x.y`
# - Run `cargo publish`
version = "0.5.0"
version = "0.5.1"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/mountpoint-s3"
description = "Rust interface to the AWS Common Runtime for Mountpoint for Amazon S3."

[dependencies]
mountpoint-s3-crt-sys = { path = "../mountpoint-s3-crt-sys", version = "0.5.0" }
mountpoint-s3-crt-sys = { path = "../mountpoint-s3-crt-sys", version = "0.5.1" }

async-channel = "1.8.0"
futures = "0.3.24"
Expand Down
4 changes: 2 additions & 2 deletions mountpoint-s3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ publish = false

[dependencies]
fuser = { path = "../vendor/fuser", version = "0.14.0", features = ["abi-7-28"] }
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.6.0" }
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.5.0" }
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.6.1" }
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.5.1" }

anyhow = { version = "1.0.64", features = ["backtrace"] }
async-channel = "1.8.0"
Expand Down

0 comments on commit 53543a5

Please sign in to comment.