diff --git a/Cargo.lock b/Cargo.lock index 5d0311cf..7f072171 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2803,7 +2803,7 @@ dependencies = [ [[package]] name = "iceberg-catalog" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "async-nats", @@ -2866,7 +2866,7 @@ dependencies = [ [[package]] name = "iceberg-catalog-bin" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "async-nats", @@ -2882,7 +2882,7 @@ dependencies = [ [[package]] name = "iceberg-ext" -version = "0.3.0" +version = "0.4.0" dependencies = [ "axum", "chrono", diff --git a/crates/iceberg-catalog-bin/CHANGELOG.md b/crates/iceberg-catalog-bin/CHANGELOG.md index 3cd0ca23..8be1b7e0 100644 --- a/crates/iceberg-catalog-bin/CHANGELOG.md +++ b/crates/iceberg-catalog-bin/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.0](https://github.com/hansetag/iceberg-catalog/compare/v0.3.0...v0.4.0) (2024-09-22) + + +### Features + +* **catalog:** Soft-deletions & tabular cleanup queues ([#310](https://github.com/hansetag/iceberg-catalog/issues/310)) ([1de63b3](https://github.com/hansetag/iceberg-catalog/commit/1de63b3886820ea219006fcc2c696328b44dfb0f)) + ## [0.3.0](https://github.com/hansetag/iceberg-catalog/compare/v0.2.1...v0.3.0) (2024-08-26) diff --git a/crates/iceberg-catalog-bin/Cargo.toml b/crates/iceberg-catalog-bin/Cargo.toml index 067696c0..ec33c66f 100644 --- a/crates/iceberg-catalog-bin/Cargo.toml +++ b/crates/iceberg-catalog-bin/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "iceberg-catalog-bin" resolver = "2" -version = "0.3.0" +version = "0.4.0" edition = { workspace = true } homepage = { workspace = true } repository = { workspace = true } diff --git a/crates/iceberg-catalog/CHANGELOG.md b/crates/iceberg-catalog/CHANGELOG.md index cc053042..024dab58 100644 --- a/crates/iceberg-catalog/CHANGELOG.md +++ b/crates/iceberg-catalog/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.4.0](https://github.com/hansetag/iceberg-catalog/compare/v0.3.0...v0.4.0) (2024-09-22) + + +### Features + +* **cache:** cache metadata location in signer ([#334](https://github.com/hansetag/iceberg-catalog/issues/334)) ([fa0863c](https://github.com/hansetag/iceberg-catalog/commit/fa0863cdbf5df626eec083499d76add4dade4e0b)) +* **catalog:** expiration queue configuration ([#330](https://github.com/hansetag/iceberg-catalog/issues/330)) ([fd96861](https://github.com/hansetag/iceberg-catalog/commit/fd96861f6179296a554bacab47144838a0d352ab)) +* **catalog:** Soft-deletions & tabular cleanup queues ([#310](https://github.com/hansetag/iceberg-catalog/issues/310)) ([1de63b3](https://github.com/hansetag/iceberg-catalog/commit/1de63b3886820ea219006fcc2c696328b44dfb0f)) +* list soft deletions ([#302](https://github.com/hansetag/iceberg-catalog/issues/302)) ([0a01eaf](https://github.com/hansetag/iceberg-catalog/commit/0a01eaf87f32e7f393f0d8f0d104594171dccfce)) +* make sure table locations are unique ([#335](https://github.com/hansetag/iceberg-catalog/issues/335)) ([543db50](https://github.com/hansetag/iceberg-catalog/commit/543db50319f757cb40f01600d36da2836cf49fb3)) +* **tabular:** soft-delete & drop purge ([#287](https://github.com/hansetag/iceberg-catalog/issues/287)) ([475db44](https://github.com/hansetag/iceberg-catalog/commit/475db4438f3bb7f1246fb846d04843d4afe3782a)) + + +### Bug Fixes + +* make conditional compilation of tests depend on var content ([#311](https://github.com/hansetag/iceberg-catalog/issues/311)) ([79036db](https://github.com/hansetag/iceberg-catalog/commit/79036dba4739cc3a65d2fe706278ac81f64bc5f2)) +* replace pretty debug prints with properly formatted errors ([#327](https://github.com/hansetag/iceberg-catalog/issues/327)) ([efe9fe9](https://github.com/hansetag/iceberg-catalog/commit/efe9fe9bd1953d59dc5e48d6901b70fbe8e24895)) + ## [0.3.0](https://github.com/hansetag/iceberg-catalog/compare/v0.2.1...v0.3.0) (2024-08-26) diff --git a/crates/iceberg-catalog/Cargo.toml b/crates/iceberg-catalog/Cargo.toml index 51e91b6d..c448d2ac 100644 --- a/crates/iceberg-catalog/Cargo.toml +++ b/crates/iceberg-catalog/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "iceberg-catalog" resolver = "2" -version = "0.3.0" +version = "0.4.0" edition = { workspace = true } homepage = { workspace = true } repository = { workspace = true } diff --git a/crates/iceberg-ext/CHANGELOG.md b/crates/iceberg-ext/CHANGELOG.md index 8264d0c5..f3db3c5d 100644 --- a/crates/iceberg-ext/CHANGELOG.md +++ b/crates/iceberg-ext/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.0](https://github.com/hansetag/iceberg-catalog/compare/v0.3.0...v0.4.0) (2024-09-22) + + +### Features + +* **cache:** cache metadata location in signer ([#334](https://github.com/hansetag/iceberg-catalog/issues/334)) ([fa0863c](https://github.com/hansetag/iceberg-catalog/commit/fa0863cdbf5df626eec083499d76add4dade4e0b)) + ## [0.3.0](https://github.com/hansetag/iceberg-catalog/compare/v0.2.1...v0.3.0) (2024-08-26) diff --git a/crates/iceberg-ext/Cargo.toml b/crates/iceberg-ext/Cargo.toml index a7224469..b16a3c47 100644 --- a/crates/iceberg-ext/Cargo.toml +++ b/crates/iceberg-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iceberg-ext" -version = "0.3.0" +version = "0.4.0" edition = { workspace = true } homepage = { workspace = true } rust-version = { workspace = true } diff --git a/release-please/.release-please-manifest.json b/release-please/.release-please-manifest.json index 37b46cc9..98134f25 100644 --- a/release-please/.release-please-manifest.json +++ b/release-please/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "crates/iceberg-catalog": "0.3.0", - "crates/iceberg-catalog-bin": "0.3.0", - "crates/iceberg-ext": "0.3.0" + "crates/iceberg-catalog": "0.4.0", + "crates/iceberg-catalog-bin": "0.4.0", + "crates/iceberg-ext": "0.4.0" } \ No newline at end of file