Skip to content

Commit 0a40d89

Browse files
authored
k256 v0.8.0 (#332)
1 parent 0e4b66e commit 0a40d89

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-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.

k256/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,30 @@ 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 ([#295])
10+
- `Order` constant ([#328])
11+
12+
### Changed
13+
- Rename `ecdsa::Asn1Signature` to `::DerSignature` ([#288])
14+
- Migrate to `FromDigest` trait from `ecdsa` crate ([#292])
15+
- Bump `elliptic-curve` to v0.9.2 ([#296])
16+
- Bump `pkcs8` to v0.6 ([#319])
17+
- Bump `ecdsa` crate dependency to v0.11 ([#330])
18+
19+
### Fixed
20+
- `DigestPrimitive` feature gating ([#324])
21+
22+
[#288]: https://github.com/RustCrypto/elliptic-curves/pull/288
23+
[#292]: https://github.com/RustCrypto/elliptic-curves/pull/292
24+
[#295]: https://github.com/RustCrypto/elliptic-curves/pull/295
25+
[#296]: https://github.com/RustCrypto/elliptic-curves/pull/296
26+
[#319]: https://github.com/RustCrypto/elliptic-curves/pull/319
27+
[#324]: https://github.com/RustCrypto/elliptic-curves/pull/324
28+
[#328]: https://github.com/RustCrypto/elliptic-curves/pull/328
29+
[#330]: https://github.com/RustCrypto/elliptic-curves/pull/330
30+
731
## 0.7.3 (2021-04-16)
832
### Changed
933
- Make `ecdsa` a default feature ([#325])

k256/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ signing/verification (including Ethereum-style signatures with public-key
66
recovery), Elliptic Curve Diffie-Hellman (ECDH), and general purpose secp256k1
77
curve arithmetic useful for implementing arbitrary group-based protocols.
88
"""
9-
version = "0.8.0-pre.1" # Also update html_root_url in lib.rs when bumping this
9+
version = "0.8.0" # Also update html_root_url in lib.rs when bumping this
1010
authors = ["RustCrypto Developers"]
1111
license = "Apache-2.0 OR MIT"
1212
documentation = "https://docs.rs/elliptic-curve"

k256/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/k256/0.8.0-pre"
47+
html_root_url = "https://docs.rs/k256/0.8.0"
4848
)]
4949
#![forbid(unsafe_code)]
5050
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]

0 commit comments

Comments
 (0)