Skip to content

Commit

Permalink
ecdsa v0.13.2 (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Dec 4, 2021
1 parent 8963704 commit 6d63c20
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion ecdsa/CHANGELOG.md
Expand Up @@ -4,7 +4,13 @@ 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.13.1 (2021-12-03)
## 0.13.2 (2021-12-04)
### Changed
- Use `LinearCombination` trait ([#417])

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

## 0.13.1 (2021-12-03) [YANKED]
### Added
- `hazmat::rfc6979_generate_k` function ([#414])

Expand Down
2 changes: 1 addition & 1 deletion ecdsa/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ecdsa"
version = "0.13.1" # Also update html_root_url in lib.rs when bumping this
version = "0.13.2" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm
(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard)
Expand Down
2 changes: 1 addition & 1 deletion ecdsa/src/lib.rs
Expand Up @@ -38,7 +38,7 @@
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/ecdsa/0.13.1"
html_root_url = "https://docs.rs/ecdsa/0.13.2"
)]

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

0 comments on commit 6d63c20

Please sign in to comment.