Skip to content

Commit da20daa

Browse files
authored
Release v1.18.0 (#1448)
Prepare for v1.18.0 release. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and I agree to the terms of the [Developer Certificate of Origin (DCO)](https://developercertificate.org/). Signed-off-by: Simon Beal <[email protected]>
1 parent 5f962cb commit da20daa

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mountpoint-s3-fs/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
## Unreleased
22

3+
## v0.4.0 (May 30, 2025)
4+
5+
* `S3Path::new` now takes a `BucketName` instead of a `String`. ([#1434](https://github.com/awslabs/mountpoint-s3/pull/1434))
6+
* Adds `BucketNameOrS3Uri`, built using `try_from(String)` and can then be converted into either a `BucketName` or an `S3Uri` to be used with `S3Path`. ([#1434](https://github.com/awslabs/mountpoint-s3/pull/1434))
7+
38
## v0.3.0 (May 27, 2025)
49

510
* Added ability to configure an error logger which can be used to report errors returned by fuse operations. Use method `MountpointConfig::error_logger` to configure the callback. ([#1416](https://github.com/awslabs/mountpoint-s3/pull/1416))
611
* `PrefetchReadError::GetRequestFailed` error variant has changed. It now contains an additional field `metadata`. ([#1411](https://github.com/awslabs/mountpoint-s3/pull/1411))
712
* Improve safety checks when reading disk cache blocks. ([#1427](https://github.com/awslabs/mountpoint-s3/pull/1427))
8-
* `S3Path::new` now takes a `BucketName` instead of a `String`. ([#1434](https://github.com/awslabs/mountpoint-s3/pull/1434))
9-
* Adds `BucketNameOrS3Uri`, built using `try_from(String)` and can then be converted into either a `BucketName` or an `S3Uri` to be used with `S3Path`. ([#1434](https://github.com/awslabs/mountpoint-s3/pull/1434))
1013

1114
## v0.2.0 (May 9, 2025)
1215

mountpoint-s3-fs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mountpoint-s3-fs"
33
# See `/doc/PUBLISHING_CRATES.md` to read how to publish new versions.
4-
version = "0.3.0"
4+
version = "0.4.0"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/mountpoint-s3"

mountpoint-s3/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## Unreleased (v1.18.0)
1+
## Unreleased
2+
3+
## v1.18.0 (May 30, 2025)
24

35
### New features
46

mountpoint-s3/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "mountpoint-s3"
3-
version = "1.17.1"
3+
version = "1.18.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
publish = false
77
default-run = "mount-s3"
88

99
[dependencies]
10-
mountpoint-s3-fs = { path = "../mountpoint-s3-fs", version = "0.3.0" }
10+
mountpoint-s3-fs = { path = "../mountpoint-s3-fs", version = "0.4.0" }
1111
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.15.0" }
1212

1313
anyhow = { version = "1.0.95", features = ["backtrace"] }

0 commit comments

Comments
 (0)