From 8bd426128a5d2f0749a67bcfa338c45596fa10c4 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 8 Mar 2023 10:26:51 -0700 Subject: [PATCH] elliptic-curve v0.13.2 (#1273) --- elliptic-curve/CHANGELOG.md | 8 ++++++++ elliptic-curve/Cargo.lock | 2 +- elliptic-curve/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/elliptic-curve/CHANGELOG.md b/elliptic-curve/CHANGELOG.md index 7c7c32927..f5bacf4a4 100644 --- a/elliptic-curve/CHANGELOG.md +++ b/elliptic-curve/CHANGELOG.md @@ -4,6 +4,14 @@ 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.13.2 (2023-03-08) +### Added +- Weakly activate `pkcs8?/std` ([#1263]) +- More `PublicKey` <-> SEC1 conversions ([#1272]) + +[#1263]: https://github.com/RustCrypto/traits/pull/1263 +[#1272]: https://github.com/RustCrypto/traits/pull/1272 + ## 0.13.1 (2023-03-01) ### Added - `SecretKey::from_slice` short input support ([#1256]) diff --git a/elliptic-curve/Cargo.lock b/elliptic-curve/Cargo.lock index 87eff8e03..8cf4ebe3a 100644 --- a/elliptic-curve/Cargo.lock +++ b/elliptic-curve/Cargo.lock @@ -102,7 +102,7 @@ dependencies = [ [[package]] name = "elliptic-curve" -version = "0.13.1" +version = "0.13.2" dependencies = [ "base16ct", "base64ct", diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index 994bb17fd..6a34fbe12 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elliptic-curve" -version = "0.13.1" +version = "0.13.2" description = """ General purpose Elliptic Curve Cryptography (ECC) support, including types and traits for representing various elliptic curve forms, scalars, points,