From c746f2d94e01a859b49e1e39e75c2a06654e4e35 Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Mon, 11 Nov 2024 15:12:18 +0000 Subject: [PATCH] Fill in changelogs --- auditable-info/CHANGELOG.md | 7 +++++++ auditable-serde/CHANGELOG.md | 4 ++++ cargo-auditable/CHANGELOG.md | 10 ++++++++++ 3 files changed, 21 insertions(+) diff --git a/auditable-info/CHANGELOG.md b/auditable-info/CHANGELOG.md index 1741bac..31bccd2 100644 --- a/auditable-info/CHANGELOG.md +++ b/auditable-info/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.9.0] - 2024-11-11 + +### Changed + +- Upgraded to `auditable-serde` v0.8.x +- Upgraded to `miniz_oxide` v0.8.x and removed its types from the public API to simplify future upgrades + ## [0.8.0] - 2024-07-30 ### Changed diff --git a/auditable-serde/CHANGELOG.md b/auditable-serde/CHANGELOG.md index da5ddd0..7866839 100644 --- a/auditable-serde/CHANGELOG.md +++ b/auditable-serde/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.0] - 2024-11-11 +### Removed +- Removed the conversion from `cargo_metadata` structures. The `cargo_metadata` crate makes breaking changes quite frequently, and we need to be able to upgrade it without breaking semver on this crate. + ## [0.7.0] - 2024-07-30 ### Changed - Removed the disabled-by-default conversion from the internal format to Cargo.lock. The Cargo.lock format is unstable, and the conversion to CycloneDX is a better idea these days. diff --git a/cargo-auditable/CHANGELOG.md b/cargo-auditable/CHANGELOG.md index 1714826..91b8b15 100644 --- a/cargo-auditable/CHANGELOG.md +++ b/cargo-auditable/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.5] - 2024-11-11 + +### Added + + - Upgraded the `cargo_metadata` dependency to gain support for Rust 2024 edition + +### Fixed + + - Fixed build on `riscv64-linux-android` target and certain custom RISC-V targets + ## [0.6.4] - 2024-05-08 ### Added