From 3787e4cd5b4223cae8bed05d087d6ff2f1d9430b Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 8 Jan 2024 11:46:35 -0700 Subject: [PATCH] k256 v0.13.3 --- Cargo.lock | 2 +- k256/CHANGELOG.md | 6 ++++++ k256/Cargo.toml | 2 +- k256/LICENSE-MIT | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9d733553..db2e6498 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -602,7 +602,7 @@ dependencies = [ [[package]] name = "k256" -version = "0.13.2" +version = "0.13.3" dependencies = [ "blobby", "cfg-if", diff --git a/k256/CHANGELOG.md b/k256/CHANGELOG.md index e76ae3de..eb2b07bf 100644 --- a/k256/CHANGELOG.md +++ b/k256/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). +## 0.13.3 (2024-01-08) +### Added +- More inlines for better efficiency ([#999]) + +[#999]: https://github.com/RustCrypto/elliptic-curves/pull/999 + ## 0.13.2 (2023-11-15) ### Added - `#[inline]` annotations on `conditional_select` ([#942]) diff --git a/k256/Cargo.toml b/k256/Cargo.toml index b9b55d4a..7d4e8c6a 100644 --- a/k256/Cargo.toml +++ b/k256/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "k256" -version = "0.13.2" +version = "0.13.3" description = """ secp256k1 elliptic curve library written in pure Rust with support for ECDSA signing/verification/public-key recovery, Taproot Schnorr signatures (BIP340), diff --git a/k256/LICENSE-MIT b/k256/LICENSE-MIT index d4ce0652..2dc3cac4 100644 --- a/k256/LICENSE-MIT +++ b/k256/LICENSE-MIT @@ -1,4 +1,4 @@ -Copyright (c) 2020-2022 RustCrypto Developers +Copyright (c) 2020-2024 RustCrypto Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated