From e5a04b495248138336a117158f67722aaa1eac0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Sat, 22 Feb 2025 18:06:13 +0300 Subject: [PATCH 1/2] hex-literal: release v1.0.0 --- Cargo.lock | 2 +- hex-literal/CHANGELOG.md | 3 ++- hex-literal/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bda478e3..e65b0d55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -71,7 +71,7 @@ checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" [[package]] name = "hex-literal" -version = "0.5.0-pre" +version = "1.0.0" [[package]] name = "hybrid-array" diff --git a/hex-literal/CHANGELOG.md b/hex-literal/CHANGELOG.md index b1412c19..1e7fa85b 100644 --- a/hex-literal/CHANGELOG.md +++ b/hex-literal/CHANGELOG.md @@ -4,9 +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.5.0 (unreleased) +## 1.0.0 (2025-02-23) ### Changed - Edition changed to 2024 and MSRV bumped to 1.85 ([#1149]) +- Relax MSRV policy and allow MSRV bumps in patch releases [#1149]: https://github.com/RustCrypto/utils/pull/1149 diff --git a/hex-literal/Cargo.toml b/hex-literal/Cargo.toml index c5f13a4b..5e21643a 100644 --- a/hex-literal/Cargo.toml +++ b/hex-literal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hex-literal" -version = "0.5.0-pre" +version = "1.0.0" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Macro for converting hexadecimal string to a byte array at compile time" From 2d707afd773655bf755b1ca6f7344363061f4fce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Sat, 22 Feb 2025 18:28:33 +0300 Subject: [PATCH 2/2] Update release date --- hex-literal/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hex-literal/CHANGELOG.md b/hex-literal/CHANGELOG.md index 1e7fa85b..4247fe11 100644 --- a/hex-literal/CHANGELOG.md +++ b/hex-literal/CHANGELOG.md @@ -4,7 +4,7 @@ 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). -## 1.0.0 (2025-02-23) +## 1.0.0 (2025-02-22) ### Changed - Edition changed to 2024 and MSRV bumped to 1.85 ([#1149]) - Relax MSRV policy and allow MSRV bumps in patch releases