Skip to content

Commit

Permalink
elliptic-curve v0.11.9 (#892)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Jan 17, 2022
1 parent ff14dad commit 999dab2
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion crypto/Cargo.lock

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

10 changes: 8 additions & 2 deletions elliptic-curve/CHANGELOG.md
Original file line number Diff line number Diff line change
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.11.8 (2021-01-15)
## 0.11.9 (2022-01-17)
### Changed
- Activate `bits`, `hash2curve`, and `voprf` features on docs.rs ([#891])

[#891]: https://github.com/RustCrypto/traits/pull/891

## 0.11.8 (2022-01-15)
### Added
- Impl `ZeroizeOnDrop` on appropriate items ([#884])

Expand All @@ -16,7 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#887]: https://github.com/RustCrypto/traits/pull/887
[#888]: https://github.com/RustCrypto/traits/pull/888

## 0.11.7 (2021-01-14)
## 0.11.7 (2022-01-14)
### Added
- Initial hash-to-field support ([#854], [#855], [#871], [#874])
- Initial hash-to-curve support ([#865], [#876])
Expand Down
2 changes: 1 addition & 1 deletion elliptic-curve/Cargo.lock

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

2 changes: 1 addition & 1 deletion elliptic-curve/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elliptic-curve"
version = "0.11.8" # Also update html_root_url in lib.rs when bumping this
version = "0.11.9" # Also update html_root_url in lib.rs when bumping this
description = """
General purpose Elliptic Curve Cryptography (ECC) support, including types
and traits for representing various elliptic curve forms, scalars, points,
Expand Down
2 changes: 1 addition & 1 deletion elliptic-curve/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2020 RustCrypto Developers
Copyright (c) 2020-2022 RustCrypto Developers

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion elliptic-curve/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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/elliptic-curve/0.11.8"
html_root_url = "https://docs.rs/elliptic-curve/0.11.9"
)]
#![doc = include_str!("../README.md")]

Expand Down

0 comments on commit 999dab2

Please sign in to comment.