From 7da098c42ea4a08064ca2411a33579bf2cc9e642 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 17 Apr 2023 11:45:11 -0600 Subject: [PATCH] signature_derive v2.0.1 (#1300) --- signature/derive/CHANGELOG.md | 6 ++++++ signature/derive/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/signature/derive/CHANGELOG.md b/signature/derive/CHANGELOG.md index cfe4bb995..4e0656283 100644 --- a/signature/derive/CHANGELOG.md +++ b/signature/derive/CHANGELOG.md @@ -4,6 +4,12 @@ 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). +## 2.0.1 (2023-04-17) +### Changed +- Bump `syn` to v2 ([#1299]) + +[#1299]: https://github.com/RustCrypto/traits/pull/1299 + ## 2.0.0 (2023-01-15) ### Changed - `Signature` trait has been removed, so don't emit it in custom derive ([#1141]) diff --git a/signature/derive/Cargo.toml b/signature/derive/Cargo.toml index 297ed4bf8..35a1e8488 100644 --- a/signature/derive/Cargo.toml +++ b/signature/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "signature_derive" -version = "2.0.0" +version = "2.0.1" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" description = "Custom derive support for the 'signature' crate"