Skip to content

Commit 9c40806

Browse files
authored
chacha20 v0.9.1 (#318)
1 parent 3ff33ae commit 9c40806

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
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.

chacha20/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@ 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 (2021-02-21)
8+
## 0.9.1 (2023-04-01)
9+
### Added
10+
- NEON support via `chacha20_force_neon` cfg attribute ([#310], [#317])
11+
12+
[#310]: https://github.com/RustCrypto/stream-ciphers/pull/310
13+
[#317]: https://github.com/RustCrypto/stream-ciphers/pull/317
14+
15+
## 0.9.0 (2022-02-21)
916
### Added
1017
- `chacha20_force_soft`, `chacha20_force_sse2`, and `chacha20_force_avx2`
1118
configuration flags ([#293])

chacha20/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chacha20"
3-
version = "0.9.0" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.9.1"
44
description = """
55
The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits
66
from the RustCrypto `cipher` crate, with optional architecture-specific
@@ -32,7 +32,6 @@ hex-literal = "0.3.3"
3232
[features]
3333
std = ["cipher/std"]
3434
zeroize = ["cipher/zeroize"]
35-
neon = []
3635

3736
[package.metadata.docs.rs]
3837
all-features = true

chacha20/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2019-2022 The RustCrypto Project Developers
1+
Copyright (c) 2019-2023 The RustCrypto Project Developers
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

chacha20/src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,10 @@
104104
#![cfg_attr(docsrs, feature(doc_cfg))]
105105
#![doc(
106106
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
107-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
108-
html_root_url = "https://docs.rs/chacha20/0.9.0"
107+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg"
109108
)]
110-
#![warn(missing_docs, rust_2018_idioms, trivial_casts, unused_qualifications)]
111109
#![allow(clippy::needless_range_loop)]
110+
#![warn(missing_docs, rust_2018_idioms, trivial_casts, unused_qualifications)]
112111

113112
pub use cipher;
114113

0 commit comments

Comments
 (0)