From 1daeac2ac7c644b7296147fda24ec9e6570e0dea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 31 Jan 2025 15:35:02 +0000 Subject: [PATCH] chore(main): release 0.1.20 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 21 +++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 170cd46..7f26ba9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.19" + ".": "0.1.20" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dbffd6..2eb4ebf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [0.1.20](https://github.com/AllexVeldman/pyoci/compare/v0.1.19...v0.1.20) (2025-01-31) + + +### Features + +* Add the package digest to `list_package` ([#163](https://github.com/AllexVeldman/pyoci/issues/163)) ([7fd3ccd](https://github.com/AllexVeldman/pyoci/commit/7fd3ccd4157225611934369e2260399da09bd9ab)), closes [#160](https://github.com/AllexVeldman/pyoci/issues/160) +* Allow setting labels on the OCI image ([#159](https://github.com/AllexVeldman/pyoci/issues/159)) ([6140d20](https://github.com/AllexVeldman/pyoci/commit/6140d200529d80286fb6f8ac347fd75e888cd8ab)) +* SHA256 digest of the provided content is checked against the provided `sha256_digest` in the request. [#162](https://github.com/AllexVeldman/pyoci/issues/162) ([968afe8](https://github.com/AllexVeldman/pyoci/commit/968afe89ed540f81fcb8bd0994d2e7938741ab7f)) + + +### Miscellaneous Chores + +* **deps:** bump pin-project from 1.1.7 to 1.1.8 ([#157](https://github.com/AllexVeldman/pyoci/issues/157)) ([8d9d0d2](https://github.com/AllexVeldman/pyoci/commit/8d9d0d27e7974e91efce5cc8a3429f891c2b987e)) +* **deps:** bump reqwest from 0.12.9 to 0.12.12 ([#156](https://github.com/AllexVeldman/pyoci/issues/156)) ([b0160cb](https://github.com/AllexVeldman/pyoci/commit/b0160cb897145ee2ccee08ee6511f11d49d50361)) +* **deps:** bump serde_json from 1.0.135 to 1.0.137 ([#155](https://github.com/AllexVeldman/pyoci/issues/155)) ([ed7f932](https://github.com/AllexVeldman/pyoci/commit/ed7f932484de0cdc2005f9af8d65284ed006b510)) + + +### Code Refactoring + +* Refactor of the publish path and HttpTransport [#162](https://github.com/AllexVeldman/pyoci/issues/162) ([968afe8](https://github.com/AllexVeldman/pyoci/commit/968afe89ed540f81fcb8bd0994d2e7938741ab7f)) + ## [0.1.19](https://github.com/AllexVeldman/pyoci/compare/v0.1.18...v0.1.19) (2025-01-13) diff --git a/Cargo.lock b/Cargo.lock index 742956b..f9edadc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1271,7 +1271,7 @@ dependencies = [ [[package]] name = "pyoci" -version = "0.1.19" +version = "0.1.20" dependencies = [ "anyhow", "askama", diff --git a/Cargo.toml b/Cargo.toml index efdf914..95854ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyoci" -version = "0.1.19" +version = "0.1.20" edition = "2021" authors = ["Allex Veldman"] description = "Let any OCI compliant registry act as a PyPi index"