Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

crypto_secretstream v0.2.0 #134

Merged
merged 1 commit into from
Jul 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions crypto_secretstream/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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.0 (2023-07-22)
### Added
- Constant corresponding to `crypto_secretstream_xchacha20poly1305_ABYTES` ([#81])

### Changed
- MSRV 1.60 ([#88])

[#81]: https://github.com/RustCrypto/nacl-compat/pull/81
[#88]: https://github.com/RustCrypto/nacl-compat/pull/88

## 0.1.1 (2022-12-01)
### Fixed
- WASM problem with 32-bit usize and `copy_with_slice` expecting 8-bytes ([#76])
Expand Down
2 changes: 1 addition & 1 deletion crypto_secretstream/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crypto_secretstream"
version = "0.2.0-pre"
version = "0.2.0"
description = """
Pure Rust implementation of libsodium's crypto_secretstream secret-key using
ChaCha20 and Poly1305
Expand Down