Skip to content

Commit a67c5c0

Browse files
authored
p256 v0.8.0 (#333)
1 parent 0a40d89 commit a67c5c0

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

p256/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,32 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.8.0 (2021-04-29)
8+
### Added
9+
- `jwk` feature ([#279])
10+
- Wycheproof ECDSA P-256 test vectors ([#313])
11+
- `Order` constant ([#328])
12+
13+
### Changed
14+
- Rename `ecdsa::Asn1Signature` to `::DerSignature` ([#288])
15+
- Migrate to `FromDigest` trait from `ecdsa` crate ([#292])
16+
- Bump `elliptic-curve` to v0.9.2 ([#296])
17+
- Bump `pkcs8` to v0.6 ([#319])
18+
- Bump `ecdsa` crate dependency to v0.11 ([#330])
19+
20+
### Fixed
21+
- `DigestPrimitive` feature gating ([#324])
22+
23+
[#279]: https://github.com/RustCrypto/elliptic-curves/pull/279
24+
[#288]: https://github.com/RustCrypto/elliptic-curves/pull/288
25+
[#292]: https://github.com/RustCrypto/elliptic-curves/pull/292
26+
[#296]: https://github.com/RustCrypto/elliptic-curves/pull/296
27+
[#313]: https://github.com/RustCrypto/elliptic-curves/pull/313
28+
[#319]: https://github.com/RustCrypto/elliptic-curves/pull/319
29+
[#324]: https://github.com/RustCrypto/elliptic-curves/pull/324
30+
[#328]: https://github.com/RustCrypto/elliptic-curves/pull/328
31+
[#330]: https://github.com/RustCrypto/elliptic-curves/pull/330
32+
733
## 0.7.3 (2021-04-16)
834
### Changed
935
- Make `ecdsa` a default feature ([#325])

p256/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Pure Rust implementation of the NIST P-256 (a.k.a. secp256r1, prime256v1)
55
elliptic curve with support for ECDH, ECDSA signing/verification, and general
66
purpose curve arithmetic
77
"""
8-
version = "0.8.0-pre.1" # Also update html_root_url in lib.rs when bumping this
8+
version = "0.8.0" # Also update html_root_url in lib.rs when bumping this
99
authors = ["RustCrypto Developers"]
1010
license = "Apache-2.0 OR MIT"
1111
documentation = "https://docs.rs/elliptic-curve"

p256/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#![doc(
4545
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
4646
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
47-
html_root_url = "https://docs.rs/p256/0.8.0-pre"
47+
html_root_url = "https://docs.rs/p256/0.8.0"
4848
)]
4949
#![forbid(unsafe_code)]
5050
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]

0 commit comments

Comments
 (0)