Skip to content

Commit 39d1182

Browse files
authored
elliptic-curve v0.11.5 (#836)
1 parent e10f287 commit 39d1182

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

elliptic-curve/CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,25 @@ 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.11.4 (2021-12-04)
7+
## 0.11.5 (2021-12-05)
8+
### Changed
9+
- Revised `LinearCombination` trait ([#835])
10+
11+
[#835]: https://github.com/RustCrypto/traits/pull/835
12+
13+
## 0.11.4 (2021-12-04) [YANKED]
814
### Added
915
- `LinearCombination` trait ([#832])
1016

1117
[#832]: https://github.com/RustCrypto/traits/pull/832
1218

13-
## 0.11.3 (2021-12-03)
19+
## 0.11.3 (2021-12-03) [YANKED]
1420
### Added
1521
- `ReduceNonZero` trait ([#827])
1622

1723
[#827]: https://github.com/RustCrypto/traits/pull/827
1824

19-
## 0.11.2 (2021-12-03)
25+
## 0.11.2 (2021-12-03) [YANKED]
2026
### Changed
2127
- Bump `pem-rfc7468` dependency to v0.3 ([#825])
2228

elliptic-curve/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.

elliptic-curve/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "elliptic-curve"
3-
version = "0.11.4" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.11.5" # Also update html_root_url in lib.rs when bumping this
44
description = """
55
General purpose Elliptic Curve Cryptography (ECC) support, including types
66
and traits for representing various elliptic curve forms, scalars, points,

elliptic-curve/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#![doc(
4747
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
4848
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
49-
html_root_url = "https://docs.rs/elliptic-curve/0.11.4"
49+
html_root_url = "https://docs.rs/elliptic-curve/0.11.5"
5050
)]
5151

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

0 commit comments

Comments
 (0)