Skip to content

Commit ecf3352

Browse files
authored
elliptic-curve v0.9.3 (#551)
1 parent cb47603 commit ecf3352

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

elliptic-curve/CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,17 @@ 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.9.2 (2021-02-12)
7+
## 0.9.3 (2021-02-16)
8+
### Changed
9+
- Bump `pkcs8` dependency to v0.5.0 ([#549])
10+
11+
### Fixed
12+
- Workaround for bitvecto-rs/bitvec#105 ([#550])
13+
14+
[#549]: https://github.com/RustCrypto/traits/pull/549
15+
[#550]: https://github.com/RustCrypto/traits/pull/550
16+
17+
## 0.9.2 (2021-02-12) [YANKED]
818
### Changed
919
- Flatten `weierstrass` module ([#542])
1020

elliptic-curve/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ General purpose Elliptic Curve Cryptography (ECC) support, including types
55
and traits for representing various elliptic curve forms, scalars, points,
66
and public/secret keys composed thereof.
77
"""
8-
version = "0.9.2" # Also update html_root_url in lib.rs when bumping this
8+
version = "0.9.3" # Also update html_root_url in lib.rs when bumping this
99
authors = ["RustCrypto Developers"]
1010
license = "Apache-2.0 OR MIT"
1111
repository = "https://github.com/RustCrypto/traits/tree/master/elliptic-curve"

elliptic-curve/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#![doc(
1717
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
1818
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
19-
html_root_url = "https://docs.rs/elliptic-curve/0.9.2"
19+
html_root_url = "https://docs.rs/elliptic-curve/0.9.3"
2020
)]
2121

2222
#[cfg(feature = "alloc")]

0 commit comments

Comments
 (0)