From 77fe9792318a8c9042691b5a703a0f0984618176 Mon Sep 17 00:00:00 2001 From: Daniel Alley Date: Sun, 23 Jun 2024 21:10:00 -0400 Subject: [PATCH] Release 0.15.0 --- .github/workflows/ci.yml | 4 ++-- CHANGELOG.md | 3 +++ Cargo.toml | 6 +++--- README.md | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42b6700..a10b59c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: matrix: rust: - stable - - 1.71.0 + - 1.72.0 steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master @@ -58,7 +58,7 @@ jobs: matrix: rust: - stable - - 1.71.0 + - 1.72.0 flags: - "--all-features" - "--no-default-features" diff --git a/CHANGELOG.md b/CHANGELOG.md index df1f38a..7d4a32a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.15.0 + ### Breaking Changes - `FileVerifyFlags` member names changed to strip the `VERIFY_` prefix. +- Minimum supported Rust version updated to 1.74 ### Added diff --git a/Cargo.toml b/Cargo.toml index 6f38cba..83b3548 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rpm" -version = "0.14.0" +version = "0.15.0" authors = [ "René Richter ", "Bernhard Schuster ", @@ -15,7 +15,7 @@ repository = "https://github.com/rpm-rs/rpm" readme = "README.md" keywords = ["RPM", "packaging"] categories = ["parsing", "development-tools"] -rust-version = "1.71.0" +rust-version = "1.74.0" [lib] name = "rpm" @@ -46,7 +46,7 @@ digest = "0.10" sha2 = "0.10" md-5 = "0.10" sha1 = "0.10" -pgp = { version = "0.11.0", optional = true } +pgp = { version = "0.13.0", optional = true } chrono = { version = "0.4", optional = true } log = "0.4" itertools = "0.13" diff --git a/README.md b/README.md index 8661f34..061837b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![crates.io](https://img.shields.io/crates/v/rpm.svg)](https://crates.io/crates/rpm) [![docs.rs](https://docs.rs/rpm/badge.svg)](https://docs.rs/rpm) -[![MSRV](https://img.shields.io/badge/rustc-1.71.0+-ab6000.svg)](https://blog.rust-lang.org/2023/07/13/Rust-1.71.0.html) +[![MSRV](https://img.shields.io/badge/rustc-1.74.0+-ab6000.svg)](https://blog.rust-lang.org/2023/11/16/Rust-1.74.0.html) ## RPM-RS