Skip to content

Commit f2eab3e

Browse files
authored
crypto-bigint v0.2.4 (#591)
1 parent 3305cf1 commit f2eab3e

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crypto-bigint/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ 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.2.4 (2021-08-23)
8+
### Added
9+
- Expose `limb` module ([#584])
10+
- `[limb::Inner; LIMBS]` conversions for `UInt` ([#585])
11+
- Bitwise right shift support for `UInt` ([#586], [#590])
12+
13+
[#584]: https://github.com/RustCrypto/utils/pull/584
14+
[#585]: https://github.com/RustCrypto/utils/pull/585
15+
[#586]: https://github.com/RustCrypto/utils/pull/586
16+
[#590]: https://github.com/RustCrypto/utils/pull/590
17+
718
## 0.2.3 (2021-08-16)
819
### Fixed
920
- `UInt::wrapping_mul` ([#563])

crypto-bigint/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crypto-bigint"
3-
version = "0.2.3" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.4" # Also update html_root_url in lib.rs when bumping this
44
description = """
55
Pure Rust implementation of a big integer library which has been designed from
66
the ground-up for use in cryptographic applications. Provides constant-time,

crypto-bigint/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#![doc(
3636
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
3737
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
38-
html_root_url = "https://docs.rs/crypto-bigint/0.2.3"
38+
html_root_url = "https://docs.rs/crypto-bigint/0.2.4"
3939
)]
4040
#![forbid(unsafe_code, clippy::unwrap_used)]
4141
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]

0 commit comments

Comments
 (0)