Skip to content

Commit dcbbcc1

Browse files
authored
Prepare for release of the fs crate v0.7.0 (#1544)
Update changelogs of the `fs` and `client` crates to prepare for release. Also include previously missing entry in `client` changelog for #1542, and increase the crate version number. ### Does this change impact existing behavior? No. ### Does this change need a changelog entry? Does it require a version change? See above. --- 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: Alessandro Passaro <[email protected]>
1 parent 4a5f914 commit dcbbcc1

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mountpoint-s3-client/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
## Unreleased (v0.18.1)
1+
## Unreleased
22

3+
## v0.19.0 (July 28, 2025)
4+
5+
### Breaking changes
6+
7+
* Make `ObjectClient` part sizes no longer optional. ([#1542](https://github.com/awslabs/mountpoint-s3/pull/1542))
38
* Remove `restore_buffer_copy` feature flag. ([#1511](https://github.com/awslabs/mountpoint-s3/pull/1511))
49

510
## v0.18.0 (July 23, 2025)

mountpoint-s3-client/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-client"
33
# See `/doc/PUBLISHING_CRATES.md` to read how to publish new versions.
4-
version = "0.18.1"
4+
version = "0.19.0"
55
edition = "2024"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/mountpoint-s3"

mountpoint-s3-fs/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## Unreleased (v0.7.0)
1+
## Unreleased
2+
3+
## v0.7.0 (July 28, 2025)
24

35
* Adopt a unified memory pool to reduce overall memory usage. ([#1511](https://github.com/awslabs/mountpoint-s3/pull/1511))
46
* Replace `S3Uri` with `S3Path` and consolidate related types like `Bucket` and `Prefix` into the `s3` module.

mountpoint-s3-fs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "Mountpoint S3 main library"
99

1010
[dependencies]
1111
mountpoint-s3-fuser = { path = "../mountpoint-s3-fuser", version = "0.1.0", features = ["abi-7-28"] }
12-
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.18.1" }
12+
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.19.0" }
1313

1414
anyhow = { version = "1.0.98", features = ["backtrace"] }
1515
async-channel = "2.3.1"

mountpoint-s3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ default-run = "mount-s3"
88

99
[dependencies]
1010
mountpoint-s3-fs = { path = "../mountpoint-s3-fs", version = "0.7.0" }
11-
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.18.1" }
11+
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.19.0" }
1212

1313
anyhow = { version = "1.0.98", features = ["backtrace"] }
1414
clap = { version = "4.5.40", features = ["derive"] }

0 commit comments

Comments
 (0)