Skip to content

Commit 0e4b66e

Browse files
authored
bp256 + bp384 v0.1.0 (#331)
1 parent e7c840c commit 0e4b66e

File tree

7 files changed

+26
-6
lines changed

7 files changed

+26
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bp256/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.1.0 (2021-04-29)
8+
### Added
9+
- `Order` constant ([#328])
10+
11+
### Changed
12+
- Bump `ecdsa` crate dependency to v0.11 ([#330])
13+
14+
[#328]: https://github.com/RustCrypto/elliptic-curves/pull/328
15+
[#330]: https://github.com/RustCrypto/elliptic-curves/pull/330
16+
717
## 0.0.2 (2021-03-22)
818
### Changed
919
- Bump `base64ct`, `ecdsa`, `elliptic-curve`, and `pkcs8`; MSRV 1.47+ ([#318])

bp256/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bp256"
33
description = "Brainpool P-256 (brainpoolP256r1 and brainpoolP256t1) elliptic curves"
4-
version = "0.0.2" # Also update html_root_url in lib.rs when bumping this
4+
version = "0.1.0" # Also update html_root_url in lib.rs when bumping this
55
authors = ["RustCrypto Developers"]
66
license = "Apache-2.0 OR MIT"
77
documentation = "https://docs.rs/elliptic-curve"

bp256/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#![doc(
1313
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
1414
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
15-
html_root_url = "https://docs.rs/bp256/0.0.1"
15+
html_root_url = "https://docs.rs/bp256/0.1.0"
1616
)]
1717
#![forbid(unsafe_code)]
1818
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]

bp384/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.1.0 (2021-04-29)
8+
### Added
9+
- `Order` constant ([#328])
10+
11+
### Changed
12+
- Bump `ecdsa` crate dependency to v0.11 ([#330])
13+
14+
[#328]: https://github.com/RustCrypto/elliptic-curves/pull/328
15+
[#330]: https://github.com/RustCrypto/elliptic-curves/pull/330
16+
717
## 0.0.2 (2021-03-22)
818
### Changed
919
- Bump `base64ct`, `ecdsa`, `elliptic-curve`, and `pkcs8`; MSRV 1.47+ ([#318])

bp384/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bp384"
33
description = "Brainpool P-384 (brainpoolP384r1 and brainpoolP384t1) elliptic curves"
4-
version = "0.0.2" # Also update html_root_url in lib.rs when bumping this
4+
version = "0.1.0" # Also update html_root_url in lib.rs when bumping this
55
authors = ["RustCrypto Developers"]
66
license = "Apache-2.0 OR MIT"
77
documentation = "https://docs.rs/elliptic-curve"

bp384/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#![doc(
1313
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
1414
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
15-
html_root_url = "https://docs.rs/bp384/0.0.1"
15+
html_root_url = "https://docs.rs/bp384/0.1.0"
1616
)]
1717
#![forbid(unsafe_code)]
1818
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]

0 commit comments

Comments
 (0)