Skip to content

Commit d22dc3e

Browse files
authored
digest v0.9.0 (#186)
1 parent b6c5fad commit d22dc3e

File tree

4 files changed

+34
-4
lines changed

4 files changed

+34
-4
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

digest/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,36 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.9.0 (2020-06-09)
9+
### Added
10+
- `ExtendableOutputDirty` and `VariableOutputDirty` traits ([#183])
11+
- `FixedOutputDirty` trait + `finalize_into*` ([#180])
12+
- `XofReader::read_boxed` method ([#178], [#181], [#182])
13+
- `alloc` feature ([#163])
14+
- Re-export `typenum::consts` as `consts` ([#123])
15+
- `Output` type alias ([#115])
16+
17+
### Changed
18+
- Rename `*result*` methods to `finalize` ala IUF ([#161])
19+
- Use `impl AsRef<[u8]>` instead of generic params on methods ([#112])
20+
- Rename `Input::input` to `Update::update` ala IUF ([#111])
21+
- Upgrade to Rust 2018 edition ([#109])
22+
- Bump `generic-array` to v0.14 ([#95])
23+
24+
[#183]: https://github.com/RustCrypto/traits/pull/183
25+
[#181]: https://github.com/RustCrypto/traits/pull/181
26+
[#182]: https://github.com/RustCrypto/traits/pull/182
27+
[#180]: https://github.com/RustCrypto/traits/pull/180
28+
[#178]: https://github.com/RustCrypto/traits/pull/178
29+
[#163]: https://github.com/RustCrypto/traits/pull/163
30+
[#161]: https://github.com/RustCrypto/traits/pull/161
31+
[#123]: https://github.com/RustCrypto/traits/pull/123
32+
[#115]: https://github.com/RustCrypto/traits/pull/115
33+
[#111]: https://github.com/RustCrypto/traits/pull/111
34+
[#112]: https://github.com/RustCrypto/traits/pull/112
35+
[#109]: https://github.com/RustCrypto/traits/pull/109
36+
[#95]: https://github.com/RustCrypto/traits/pull/95
37+
838
## 0.8.1 (2019-06-30)
939

1040
## 0.8.0 (2018-10-01)

digest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "digest"
33
description = "Traits for cryptographic hash functions"
4-
version = "0.9.0-pre"
4+
version = "0.9.0"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

signature/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
1212
categories = ["cryptography", "no-std"]
1313

1414
[dependencies.digest]
15-
version = "= 0.9.0-pre"
15+
version = "0.9"
1616
optional = true
1717
default-features = false
1818
path = "../digest"

0 commit comments

Comments
 (0)