diff --git a/rust/crates/pinget-cli/Cargo.toml b/rust/crates/pinget-cli/Cargo.toml index 67090da..296b794 100644 --- a/rust/crates/pinget-cli/Cargo.toml +++ b/rust/crates/pinget-cli/Cargo.toml @@ -13,7 +13,7 @@ path = "src/main.rs" [dependencies] anyhow = "1.0.102" clap = { version = "4.6.1", features = ["derive"] } -pinget-core = { version = "0.9.0", path = "../pinget-core" } +pinget-core = { version = "0.9.1", path = "../pinget-core" } chrono = "0.4.44" dirs = "6.0" jsonschema = { version = "0.30", default-features = false, features = ["resolve-file"] } diff --git a/rust/crates/pinget-core/CHANGELOG.md b/rust/crates/pinget-core/CHANGELOG.md index 28e694c..0890697 100644 --- a/rust/crates/pinget-core/CHANGELOG.md +++ b/rust/crates/pinget-core/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.1](https://github.com/Devolutions/pinget/compare/pinget-core-v0.9.0...pinget-core-v0.9.1) - 2026-06-19 + +### Other + +- Optimize Rust release binary size + ## [0.8.1](https://github.com/Devolutions/pinget/compare/pinget-core-v0.8.0...pinget-core-v0.8.1) - 2026-06-02 ### Other diff --git a/rust/crates/pinget-core/Cargo.toml b/rust/crates/pinget-core/Cargo.toml index 3292a15..e2b850a 100644 --- a/rust/crates/pinget-core/Cargo.toml +++ b/rust/crates/pinget-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pinget-core" -version = "0.9.0" +version = "0.9.1" edition = "2024" description = "Pure Rust Pinget core library that works directly with source caches, REST endpoints, and installed package state without COM." license = "MIT"