Skip to content

Commit

Permalink
Release new crate versions (#700)
Browse files Browse the repository at this point in the history
* Release new crate versions

Signed-off-by: Daniel Carl Jones <[email protected]>

* Update release dates for Jan 18th

Signed-off-by: Daniel Carl Jones <[email protected]>

* Fix bad dependencies, bump minor version on CRT anyway

Signed-off-by: Daniel Carl Jones <[email protected]>

* Fix bad dependencies (again)

Signed-off-by: Daniel Carl Jones <[email protected]>

---------

Signed-off-by: Daniel Carl Jones <[email protected]>
  • Loading branch information
dannycjones authored Jan 18, 2024
1 parent 7ecbfa8 commit 06aca78
Show file tree
Hide file tree
Showing 8 changed files with 26 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.

12 changes: 12 additions & 0 deletions mountpoint-s3-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## v0.6.2 (January 18, 2024)

### Breaking changes

* No breaking changes.

### Other changes

* Individual S3 requests made as part of meta requests are no longer logged at WARN, only DEBUG. For those log entries, the CRT error is now output to the logs. ([#669](https://github.com/awslabs/mountpoint-s3/pull/669))
* Client user-agent now includes `-dirty` suffix to indicate when the client was built with uncommitted changes. ([#678](https://github.com/awslabs/mountpoint-s3/pull/678))


## v0.6.1 (December 1, 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
@@ -1,14 +1,14 @@
[package]
name = "mountpoint-s3-client"
# See `/mountpoint-s3-client/PUBLISHING_CRATES.md` to read how to publish new versions.
version = "0.6.1"
version = "0.6.2"
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.1" }
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.6.0" }

async-trait = "0.1.57"
auto_impl = "1.0.1"
Expand Down
2 changes: 2 additions & 0 deletions mountpoint-s3-crt-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased

## v0.5.2 (January 18, 2024)

* Update to latest CRT dependencies

## v0.5.1 (December 1, 2023)
Expand Down
2 changes: 1 addition & 1 deletion mountpoint-s3-crt-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mountpoint-s3-crt-sys"
# See `/mountpoint-s3-client/PUBLISHING_CRATES.md` to read how to publish new versions.
version = "0.5.1"
version = "0.5.2"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/mountpoint-s3"
Expand Down
2 changes: 2 additions & 0 deletions mountpoint-s3-crt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased

## v0.6.0 (January 18, 2024)

* Update to latest CRT dependencies
* Return type of `common::Uri::host_port` changed from `u16` to `u32`

Expand Down
4 changes: 2 additions & 2 deletions mountpoint-s3-crt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "mountpoint-s3-crt"
# See `/mountpoint-s3-client/PUBLISHING_CRATES.md` to read how to publish new versions.
version = "0.5.1"
version = "0.6.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.5.1" }
mountpoint-s3-crt-sys = { path = "../mountpoint-s3-crt-sys", version = "0.5.2" }

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.1" }
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.5.1" }
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.6.2" }
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.6.0" }

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

0 comments on commit 06aca78

Please sign in to comment.