diff --git a/Cargo.lock b/Cargo.lock index 242c8f6..2f76061 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/age/CHANGELOG.md b/age/CHANGELOG.md index 8a03137..c390d37 100644 --- a/age/CHANGELOG.md +++ b/age/CHANGELOG.md @@ -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` diff --git a/age/Cargo.toml b/age/Cargo.toml index 1f22c21..63ec0a5 100644 --- a/age/Cargo.toml +++ b/age/Cargo.toml @@ -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 "] repository = "https://github.com/str4d/rage" readme = "README.md" diff --git a/fuzz-afl/Cargo.lock b/fuzz-afl/Cargo.lock index 486d9ac..057bd68 100644 --- a/fuzz-afl/Cargo.lock +++ b/fuzz-afl/Cargo.lock @@ -27,7 +27,7 @@ dependencies = [ [[package]] name = "age" -version = "0.9.1" +version = "0.9.2" dependencies = [ "age-core", "base64", diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index 25bb4fc..0c57316 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -14,7 +14,7 @@ dependencies = [ [[package]] name = "age" -version = "0.9.1" +version = "0.9.2" dependencies = [ "age-core", "base64", diff --git a/rage/CHANGELOG.md b/rage/CHANGELOG.md index 83b2ac8..d7de412 100644 --- a/rage/CHANGELOG.md +++ b/rage/CHANGELOG.md @@ -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 diff --git a/rage/Cargo.toml b/rage/Cargo.toml index 7a43972..38a8f41 100644 --- a/rage/Cargo.toml +++ b/rage/Cargo.toml @@ -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 "] 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"