diff --git a/Cargo.lock b/Cargo.lock index 3b01da07d..82747a844 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1938,7 +1938,7 @@ dependencies = [ [[package]] name = "mountpoint-s3" -version = "1.0.2" +version = "1.1.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/mountpoint-s3/CHANGELOG.md b/mountpoint-s3/CHANGELOG.md index 5f0fd9d4e..b338e0d8f 100644 --- a/mountpoint-s3/CHANGELOG.md +++ b/mountpoint-s3/CHANGELOG.md @@ -1,11 +1,13 @@ ## Unreleased +## v1.1.0 (October 23, 2023) + ### Breaking changes * Mountpoint will now complete file uploads at `close` time, and `close` will return an error if the upload was not successful. Before this change, `close` did not wait for the upload to complete, which could cause confusing results for applications that try to read a file they just wrote. ([#526](https://github.com/awslabs/mountpoint-s3/pull/526)) ### Other changes -* Fixed a bug that cause poor performance for sequential reads in some cases ([#488](https://github.com/awslabs/mountpoint-s3/pull/488)). A workaround we have previously shared for this issue (setting the `--max-threads` argument to `1`) is no longer necessary with this fix. ([#556](https://github.com/awslabs/mountpoint-s3/pull/556)) -* Introduced `--user-agent-prefix ` CLI argument ([#548](https://github.com/awslabs/mountpoint-s3/pull/548)) to optionally allow invoker of `mount-s3` to specify an additional prefix for the HTTP User-Agent header. +* Fixed a bug that caused poor performance for sequential reads in some cases ([#488](https://github.com/awslabs/mountpoint-s3/pull/488)). A workaround we have previously shared for this issue (setting the `--max-threads` argument to `1`) is no longer necessary with this fix. ([#556](https://github.com/awslabs/mountpoint-s3/pull/556)) +* Introduced the `--user-agent-prefix ` CLI argument to optionally allow specifying an additional prefix for the HTTP User-Agent header sent with all S3 requests. ([#548](https://github.com/awslabs/mountpoint-s3/pull/548)) ## v1.0.2 (September 22, 2023) diff --git a/mountpoint-s3/Cargo.toml b/mountpoint-s3/Cargo.toml index e1b956c5f..b1a806419 100644 --- a/mountpoint-s3/Cargo.toml +++ b/mountpoint-s3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mountpoint-s3" -version = "1.0.2" +version = "1.1.0" edition = "2021" license = "Apache-2.0" publish = false