From 8dae89c2d18300b42065de1b49883a1ae2dc727e Mon Sep 17 00:00:00 2001 From: devolutionsbot <31221910+devolutionsbot@users.noreply.github.com> Date: Mon, 1 Jun 2026 08:09:44 -0400 Subject: [PATCH] chore(release): prepare for publishing --- rust/crates/pinget-cli/Cargo.toml | 2 +- rust/crates/pinget-core/CHANGELOG.md | 9 +++++++++ rust/crates/pinget-core/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/rust/crates/pinget-cli/Cargo.toml b/rust/crates/pinget-cli/Cargo.toml index d1920c6..575564a 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.7.0", path = "../pinget-core" } +pinget-core = { version = "0.8.0", path = "../pinget-core" } chrono = "0.4.44" dirs = "6.0" jsonschema = "0.30" diff --git a/rust/crates/pinget-core/CHANGELOG.md b/rust/crates/pinget-core/CHANGELOG.md index 27b18cb..e8d1407 100644 --- a/rust/crates/pinget-core/CHANGELOG.md +++ b/rust/crates/pinget-core/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0](https://github.com/Devolutions/pinget/compare/pinget-core-v0.7.0...pinget-core-v0.8.0) - 2026-06-01 + +### Other + +- Harden preindexed cache refresh +- Fix stale preindexed package details +- Emit YAML manifest alongside installer on download ([#29](https://github.com/Devolutions/pinget/pull/29)) +- Use Turso for Rust SQLite access + ## [0.4.2](https://github.com/Devolutions/pinget/compare/pinget-core-v0.4.1...pinget-core-v0.4.2) - 2026-05-13 ### Other diff --git a/rust/crates/pinget-core/Cargo.toml b/rust/crates/pinget-core/Cargo.toml index 5aec315..1c4186a 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.7.0" +version = "0.8.0" edition = "2024" description = "Pure Rust Pinget core library that works directly with source caches, REST endpoints, and installed package state without COM." license = "MIT"