Skip to content

Commit

Permalink
crypto-bigint v0.2.4 (#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Aug 23, 2021
1 parent 3305cf1 commit f2eab3e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 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.

11 changes: 11 additions & 0 deletions crypto-bigint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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.2.4 (2021-08-23)
### Added
- Expose `limb` module ([#584])
- `[limb::Inner; LIMBS]` conversions for `UInt` ([#585])
- Bitwise right shift support for `UInt` ([#586], [#590])

[#584]: https://github.com/RustCrypto/utils/pull/584
[#585]: https://github.com/RustCrypto/utils/pull/585
[#586]: https://github.com/RustCrypto/utils/pull/586
[#590]: https://github.com/RustCrypto/utils/pull/590

## 0.2.3 (2021-08-16)
### Fixed
- `UInt::wrapping_mul` ([#563])
Expand Down
2 changes: 1 addition & 1 deletion crypto-bigint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crypto-bigint"
version = "0.2.3" # Also update html_root_url in lib.rs when bumping this
version = "0.2.4" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust implementation of a big integer library which has been designed from
the ground-up for use in cryptographic applications. Provides constant-time,
Expand Down
2 changes: 1 addition & 1 deletion crypto-bigint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#![doc(
html_logo_url = "https://github.com/raw/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://github.com/raw/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/crypto-bigint/0.2.3"
html_root_url = "https://docs.rs/crypto-bigint/0.2.4"
)]
#![forbid(unsafe_code, clippy::unwrap_used)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
Expand Down

0 comments on commit f2eab3e

Please sign in to comment.