Skip to content

Commit

Permalink
Merge pull request #65 from RustCrypto/elliptic-curve/v0.2.0
Browse files Browse the repository at this point in the history
elliptic-curve v0.2.0
  • Loading branch information
tarcieri committed Dec 11, 2019
2 parents 598ac55 + b46bbd9 commit cc156d3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ecdsa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ categories = ["cryptography", "no-std"]
keywords = ["crypto", "ecc", "nist", "secp256k1", "signature"]

[dependencies.elliptic-curve]
version = "0.1.0"
version = "0.2.0"
path = "../elliptic-curve-crate"
default-features = false
features = ["weierstrass"]
Expand Down
11 changes: 10 additions & 1 deletion elliptic-curve-crate/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.1.0 (2019-12-06)
## 0.2.0 (2019-12-11)
### Added
- `secp256r1` (P-256) point compression and decompression ([#63], [#64])

### Changed
- Bump MSRV to 1.37 ([#63])

[#63]: https://github.com/RustCrypto/signatures/pull/63
[#64]: https://github.com/RustCrypto/signatures/pull/64

## 0.1.0 (2019-12-06)
- Initial release
2 changes: 1 addition & 1 deletion elliptic-curve-crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ General purpose Elliptic Curve Cryptography (ECC) support, including types
and traits for representing various elliptic curve forms, scalars, points,
and public/secret keys composed thereof.
"""
version = "0.1.0" # Also update html_root_url in lib.rs when bumping this
version = "0.2.0" # Also update html_root_url in lib.rs when bumping this
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/elliptic-curve"
Expand Down
2 changes: 1 addition & 1 deletion elliptic-curve-crate/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png",
html_root_url = "https://docs.rs/elliptic-curve/0.1.0"
html_root_url = "https://docs.rs/elliptic-curve/0.2.0"
)]

#[cfg(feature = "std")]
Expand Down

0 comments on commit cc156d3

Please sign in to comment.