Skip to content

Commit

Permalink
salsa20 v0.9.0 (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Aug 29, 2021
1 parent 2dc6746 commit f67debd
Show file tree
Hide file tree
Showing 4 changed files with 9 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.

6 changes: 6 additions & 0 deletions salsa20/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.9.0 (2021-08-29)
### Removed
- `xsalsa` feature: `XSalsa20` is now available by-default ([#271])

[#271]: https://github.com/RustCrypto/stream-ciphers/pull/271

## 0.8.1 (2021-07-20)
### Changed
- Pin `zeroize` dependency to v1.3 ([#256])
Expand Down
2 changes: 1 addition & 1 deletion salsa20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "salsa20"
version = "0.8.1" # Also update html_root_url in lib.rs when bumping this
version = "0.9.0" # Also update html_root_url in lib.rs when bumping this
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Salsa20 Stream Cipher"
Expand Down
2 changes: 1 addition & 1 deletion salsa20/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/salsa20/0.8.1"
html_root_url = "https://docs.rs/salsa20/0.9.0"
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![deny(unsafe_code)]
Expand Down

0 comments on commit f67debd

Please sign in to comment.