diff --git a/.release-please-manifest.json b/.release-please-manifest.json index eb5abf7..e7ca613 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.4" + ".": "0.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2942c96..9e3b5cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.7.0](https://github.com/developmentseed/multistore/compare/v0.6.4...v0.7.0) (2026-07-22) + + +### Features + +* enforce conditional-write preconditions on PutObject ([#122](https://github.com/developmentseed/multistore/issues/122)) ([f5ff9a8](https://github.com/developmentseed/multistore/commit/f5ff9a897268c0e44c327385410472b363351221)) +* implement same-store CopyObject (x-amz-copy-source) ([#121](https://github.com/developmentseed/multistore/issues/121)) ([02a79b0](https://github.com/developmentseed/multistore/commit/02a79b016fe8b7d4a91ea534846d2ecbb055b8f5)) +* **sts:** accept AssumeRoleWithWebIdentity params from form-encoded POST bodies ([#112](https://github.com/developmentseed/multistore/issues/112)) ([c135b95](https://github.com/developmentseed/multistore/commit/c135b9593fe35242e1876e3c2839250d03dfa34c)) +* upgrade object_store to 0.14, reqwest to 0.13, unpin worker ([#114](https://github.com/developmentseed/multistore/issues/114)) ([c5254b4](https://github.com/developmentseed/multistore/commit/c5254b4b17d02fb5c28f086ade2a444e4a247908)) + ## [0.6.4](https://github.com/developmentseed/multistore/compare/v0.6.3...v0.6.4) (2026-07-10) diff --git a/Cargo.toml b/Cargo.toml index 8a0073b..157eb3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ default-members = [ resolver = "2" [workspace.package] -version = "0.6.4" +version = "0.7.0" edition = "2021" license = "MIT" @@ -105,10 +105,10 @@ console_error_panic_hook = "0.1.7" lambda_http = "0.13" # Internal crates -multistore = { path = "crates/core", version = "0.6.4" } -multistore-static-config = { path = "crates/static-config", version = "0.6.4" } -multistore-sts = { path = "crates/sts", version = "0.6.4" } -multistore-metering = { path = "crates/metering", version = "0.6.4" } -multistore-cf-workers = { path = "crates/cf-workers", version = "0.6.4" } -multistore-oidc-provider = { path = "crates/oidc-provider", version = "0.6.4" } -multistore-path-mapping = { path = "crates/path-mapping", version = "0.6.4" } +multistore = { path = "crates/core", version = "0.7.0" } +multistore-static-config = { path = "crates/static-config", version = "0.7.0" } +multistore-sts = { path = "crates/sts", version = "0.7.0" } +multistore-metering = { path = "crates/metering", version = "0.7.0" } +multistore-cf-workers = { path = "crates/cf-workers", version = "0.7.0" } +multistore-oidc-provider = { path = "crates/oidc-provider", version = "0.7.0" } +multistore-path-mapping = { path = "crates/path-mapping", version = "0.7.0" }