diff --git a/Cargo.lock b/Cargo.lock index d75c04b..56ebcdd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "age" -version = "0.7.1" +version = "0.8.0" dependencies = [ "aes", "age-core", @@ -88,7 +88,7 @@ dependencies = [ [[package]] name = "age-core" -version = "0.7.1" +version = "0.8.0" dependencies = [ "base64", "chacha20poly1305", @@ -104,7 +104,7 @@ dependencies = [ [[package]] name = "age-plugin" -version = "0.2.1" +version = "0.3.0" dependencies = [ "age-core", "base64", @@ -1784,7 +1784,7 @@ dependencies = [ [[package]] name = "rage" -version = "0.7.1" +version = "0.8.0" dependencies = [ "age", "chrono", diff --git a/age-core/CHANGELOG.md b/age-core/CHANGELOG.md index a0606ed..f5be6fd 100644 --- a/age-core/CHANGELOG.md +++ b/age-core/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to Rust's notion of to 1.0.0 are beta releases. ## [Unreleased] + +## [0.8.0] - 2022-05-02 ### Added - `age_core::io::{DebugReader, DebugWriter}` - `age_core::plugin::Error::Unsupported` diff --git a/age-core/Cargo.toml b/age-core/Cargo.toml index 04359be..f7a8aa1 100644 --- a/age-core/Cargo.toml +++ b/age-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "age-core" description = "[BETA] Common functions used across the age crates" -version = "0.7.1" +version = "0.8.0" authors = ["Jack Grigg "] repository = "https://github.com/str4d/rage" readme = "README.md" diff --git a/age-plugin/CHANGELOG.md b/age-plugin/CHANGELOG.md index 6195992..b2cb20c 100644 --- a/age-plugin/CHANGELOG.md +++ b/age-plugin/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to Rust's notion of to 1.0.0 are beta releases. ## [Unreleased] + +## [0.3.0] - 2022-05-02 ### Added - `age_plugin::Callbacks::confirm` diff --git a/age-plugin/Cargo.toml b/age-plugin/Cargo.toml index 0453b05..35e0810 100644 --- a/age-plugin/Cargo.toml +++ b/age-plugin/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "age-plugin" description = "[BETA] API for writing age plugins." -version = "0.2.1" +version = "0.3.0" authors = ["Jack Grigg "] repository = "https://github.com/str4d/rage" readme = "README.md" @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" edition = "2021" [dependencies] -age-core = { version = "0.7.1", path = "../age-core", features = ["plugin"] } +age-core = { version = "0.8.0", path = "../age-core", features = ["plugin"] } base64 = "0.13" bech32 = "0.8" chrono = "0.4" diff --git a/age/CHANGELOG.md b/age/CHANGELOG.md index 9f27551..2dba43b 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.8.0] - 2022-05-02 ### Added - `age::Callbacks::confirm` to request that the user provides confirmation for some action. diff --git a/age/Cargo.toml b/age/Cargo.toml index ca3177c..2961fc0 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.7.1" +version = "0.8.0" authors = ["Jack Grigg "] repository = "https://github.com/str4d/rage" readme = "README.md" @@ -14,7 +14,7 @@ edition = "2021" maintenance = { status = "experimental" } [dependencies] -age-core = { version = "0.7.1", path = "../age-core" } +age-core = { version = "0.8.0", path = "../age-core" } # Dependencies required by the age specification: # - Base64 from RFC 4648 diff --git a/age/README.md b/age/README.md index adab2ab..e3cc744 100644 --- a/age/README.md +++ b/age/README.md @@ -23,7 +23,7 @@ The reference interoperable Go implementation is available at Add this line to your `Cargo.toml`: ``` -age = "0.7" +age = "0.8" ``` See the [documentation](https://docs.rs/age) for examples. diff --git a/fuzz-afl/Cargo.lock b/fuzz-afl/Cargo.lock index fe8e12b..38ab6ae 100644 --- a/fuzz-afl/Cargo.lock +++ b/fuzz-afl/Cargo.lock @@ -26,7 +26,7 @@ dependencies = [ [[package]] name = "age" -version = "0.7.1" +version = "0.8.0" dependencies = [ "age-core", "base64", @@ -54,7 +54,7 @@ dependencies = [ [[package]] name = "age-core" -version = "0.7.1" +version = "0.8.0" dependencies = [ "base64", "chacha20poly1305", diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index 1bb5cbd..8ef2696 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -13,7 +13,7 @@ dependencies = [ [[package]] name = "age" -version = "0.7.1" +version = "0.8.0" dependencies = [ "age-core", "base64", @@ -41,7 +41,7 @@ dependencies = [ [[package]] name = "age-core" -version = "0.7.1" +version = "0.8.0" dependencies = [ "base64", "chacha20poly1305", diff --git a/rage/CHANGELOG.md b/rage/CHANGELOG.md index fce047f..be54eaa 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.8.0] - 2022-05-02 ### Changed - MSRV is now 1.56.0. - When both reading input from the terminal (e.g. if the user is typing the diff --git a/rage/Cargo.toml b/rage/Cargo.toml index 40cb543..0b098e1 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.7.1" +version = "0.8.0" authors = ["Jack Grigg "] repository = "https://github.com/str4d/rage" readme = "../README.md" @@ -53,7 +53,7 @@ maintenance = { status = "experimental" } [dependencies] # rage and rage-keygen dependencies -age = { version = "0.7.1", path = "../age", features = ["armor", "cli-common", "plugin"] } +age = { version = "0.8.0", path = "../age", features = ["armor", "cli-common", "plugin"] } chrono = "0.4" console = { version = "0.15", default-features = false } env_logger = "0.9"