Skip to content

Commit 09a8873

Browse files
authored
crypto_box v0.8.0 (#57)
1 parent d742fc5 commit 09a8873

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crypto_box/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ 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.8.0 (2022-08-10)
8+
### Changed
9+
- Unpin `zeroize` version ([#41])
10+
- Upgrade to Rust 2021 edition; MSRV 1.56 ([#42])
11+
- Bump `chacha20` to v0.9 ([#50])
12+
- Bump `chacha20poly1305` to v0.10 ([#50])
13+
- Use `serdect` crate ([#51])
14+
- Select `x25519-dalek` backend automatically ([#55])
15+
16+
### Removed
17+
- `Box` type alias: use `SalsaBox` instead ([#53])
18+
- `u32_backend` and `u64_backend` features: now selected automatically ([#55])
19+
20+
[#41]: https://github.com/RustCrypto/nacl-compat/pull/41
21+
[#42]: https://github.com/RustCrypto/nacl-compat/pull/42
22+
[#50]: https://github.com/RustCrypto/nacl-compat/pull/50
23+
[#51]: https://github.com/RustCrypto/nacl-compat/pull/51
24+
[#53]: https://github.com/RustCrypto/nacl-compat/pull/53
25+
[#55]: https://github.com/RustCrypto/nacl-compat/pull/55
26+
727
## 0.7.2 (2022-03-21)
828
### Fixed
929
- Building on docs.rs ([#30])

crypto_box/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crypto_box"
3-
version = "0.8.0-pre"
3+
version = "0.8.0"
44
description = """
55
Pure Rust implementation of NaCl's crypto_box public-key authenticated
66
encryption primitive which combines the X25519 Elliptic Curve Diffie-Hellman

0 commit comments

Comments
 (0)