Skip to content

Commit

Permalink
Release new crate versions (#621)
Browse files Browse the repository at this point in the history
Signed-off-by: James Bornholt <[email protected]>
  • Loading branch information
jamesbornholt authored Nov 21, 2023
1 parent 3d9b8a9 commit 2719a5f
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 10 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.

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

### Breaking changes

* The `user_agent_prefix` string field of `S3ClientConfig` has been replaced with a new `user_agent` field of type `UserAgent` to allow more flexible construction of user agent headers that fit the pattern of AWS SDKs ([#608](https://github.com/awslabs/mountpoint-s3/pull/608))

### Other changes

* Request tracing spans are now created with a unique target to allow them to be filtered out ([#615](https://github.com/awslabs/mountpoint-s3/pull/615))
* Added `InstanceInfo`, a higher-level IMDS client that can retrieve metadata about an EC2 instance ([#608](https://github.com/awslabs/mountpoint-s3/pull/608))
* `ETag`s can now be unwrapped with `into_inner()`, and now implement `Hash` and `Eq` ([#589](https://github.com/awslabs/mountpoint-s3/pull/589), [#593](https://github.com/awslabs/mountpoint-s3/pull/593))
* The `MockClient` now supports counting the number of requests performed, for use in tests that need to make assertions about requests ([#567](https://github.com/awslabs/mountpoint-s3/pull/567))

## v0.4.0 (September 26, 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.4.0"
version = "0.5.0"
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.3.0" }
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.4.0" }

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.4.0 (November 21, 2023)

* Update to latest CRT dependencies

## v0.3.0 (September 26, 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.3.0"
version = "0.4.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/mountpoint-s3"
Expand Down
5 changes: 5 additions & 0 deletions mountpoint-s3-crt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.4.0 (November 21, 2023)

* Update to latest CRT dependencies
* Allow constructing custom signing configurations ([#545](https://github.com/awslabs/mountpoint-s3/pull/545))

## v0.3.0 (September 26, 2023)

* Update to latest CRT dependencies
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.3.0"
version = "0.4.0"
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.3.0" }
mountpoint-s3-crt-sys = { path = "../mountpoint-s3-crt-sys", version = "0.4.0" }

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.4.0" }
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.3.0" }
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.5.0" }
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.4.0" }

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

0 comments on commit 2719a5f

Please sign in to comment.