From f7470fa2d7af1715efa9e22f649170aac78cd48f Mon Sep 17 00:00:00 2001 From: Daniel Alley Date: Wed, 31 May 2023 14:06:14 -0400 Subject: [PATCH] 0.12.0 release --- CHANGELOG.md | 13 ++++++++++--- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4928b67..ff409a5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,14 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -### Breaking Change +## 0.12.0 -- Removed `RPM` prefix from type names, e.g. `RPMPackage` is renamed to `Package`. -- `RPMBuilder` is renamed to `PackageBuilder`. +## Breaking Changes + +- Removed `RPM` prefix from type names, e.g. `RPMPackage` is renamed to `Package`, + `RPMBuilder` is renamed to `PackageBuilder`, etc. Many other type names are adjusted + likewise. - The `PackageBuilder::build_time` method is removed. Package build time is now included by default and can be clamped using the `PackageBuilder::source_date` method. - Several of the signer and verifier trait APIs were changed +Note: The pace of breaking changes ought to slow down significantly from this point forwards. +Most of the substantial changes which needed to be made have now been made. Thank you for your +patience. + ### Added - `PackageBuilder::source_date` method for clamping modification time of files, diff --git a/Cargo.toml b/Cargo.toml index 42f26252..9a695d8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rpm" -version = "0.11.0" +version = "0.12.0" authors = [ "René Richter ", "Bernhard Schuster ",