This commit is contained in:
Jack Grigg 2023-06-12 19:50:05 +00:00
parent 3340db8655
commit 8f4a0f40ea
7 changed files with 11 additions and 7 deletions

4
Cargo.lock generated
View file

@ -54,7 +54,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.9.1"
version = "0.9.2"
dependencies = [
"aes",
"aes-gcm",
@ -1958,7 +1958,7 @@ dependencies = [
[[package]]
name = "rage"
version = "0.9.1"
version = "0.9.2"
dependencies = [
"age",
"chrono",

View file

@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
## [0.9.2] - 2023-06-12
### Added
- `age::Decryptor::{new_buffered, new_async_buffered}`, which are more efficient
for types implementing `std::io::BufRead` or `futures::io::AsyncBufRead`

View file

@ -1,7 +1,7 @@
[package]
name = "age"
description = "[BETA] A simple, secure, and modern encryption library."
version = "0.9.1"
version = "0.9.2"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"

2
fuzz-afl/Cargo.lock generated
View file

@ -27,7 +27,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.9.1"
version = "0.9.2"
dependencies = [
"age-core",
"base64",

2
fuzz/Cargo.lock generated
View file

@ -14,7 +14,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.9.1"
version = "0.9.2"
dependencies = [
"age-core",
"base64",

View file

@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
## [0.9.2] - 2023-06-12
### Changed
- Increased parsing speed of age file headers. For single-recipient encrypted
files, decryption throughput increases by 6% for medium (< 1MiB) files, and

View file

@ -1,7 +1,7 @@
[package]
name = "rage"
description = "[BETA] A simple, secure, and modern encryption tool."
version = "0.9.1"
version = "0.9.2"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "../README.md"
@ -54,7 +54,7 @@ maintenance = { status = "experimental" }
[dependencies]
# rage and rage-keygen dependencies
age = { version = "0.9.1", path = "../age", features = ["armor", "cli-common", "plugin"] }
age = { version = "0.9.2", path = "../age", features = ["armor", "cli-common", "plugin"] }
chrono = "0.4"
console = { version = "0.15", default-features = false }
env_logger = "0.9"