From d35d442f91156bfeb421de49c4ee6d9e5b038150 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Sun, 3 Nov 2024 10:42:17 +0000 Subject: [PATCH] v0.11.0 --- Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- age-core/CHANGELOG.md | 2 ++ age-core/Cargo.toml | 2 +- age-plugin/CHANGELOG.md | 3 +++ age-plugin/Cargo.toml | 2 +- age/CHANGELOG.md | 2 ++ age/Cargo.toml | 2 +- age/README.md | 2 +- fuzz-afl/Cargo.lock | 4 ++-- fuzz/Cargo.lock | 4 ++-- rage/CHANGELOG.md | 2 ++ rage/Cargo.toml | 2 +- rage/tests/cmd/rage-keygen/version.toml | 2 +- rage/tests/cmd/rage-mount/version.toml | 2 +- rage/tests/cmd/rage/version.toml | 2 +- 16 files changed, 27 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1bb30a1..3ae0af0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -60,7 +60,7 @@ dependencies = [ [[package]] name = "age" -version = "0.10.0" +version = "0.11.0" dependencies = [ "aes", "aes-gcm", @@ -110,7 +110,7 @@ dependencies = [ [[package]] name = "age-core" -version = "0.10.0" +version = "0.11.0" dependencies = [ "base64", "chacha20poly1305", @@ -126,7 +126,7 @@ dependencies = [ [[package]] name = "age-plugin" -version = "0.5.0" +version = "0.6.0" dependencies = [ "age-core", "base64", @@ -2042,7 +2042,7 @@ dependencies = [ [[package]] name = "rage" -version = "0.10.0" +version = "0.11.0" dependencies = [ "age", "chrono", diff --git a/Cargo.toml b/Cargo.toml index d13d535..40b27a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,8 +15,8 @@ repository = "https://github.com/str4d/rage" license = "MIT OR Apache-2.0" [workspace.dependencies] -age = { version = "0.10.0", path = "age" } -age-core = { version = "0.10.0", path = "age-core" } +age = { version = "0.11.0", path = "age" } +age-core = { version = "0.11.0", path = "age-core" } # Dependencies required by the age specification: # - Base64 from RFC 4648 diff --git a/age-core/CHANGELOG.md b/age-core/CHANGELOG.md index baaa088..bd5699d 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.11.0] - 2024-11-03 ### Added - `age_core::format`: - `FileKey::new` diff --git a/age-core/Cargo.toml b/age-core/Cargo.toml index 5bab42b..131a54d 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.10.0" +version = "0.11.0" authors.workspace = true repository.workspace = true readme = "README.md" diff --git a/age-plugin/CHANGELOG.md b/age-plugin/CHANGELOG.md index b37396e..34b0bba 100644 --- a/age-plugin/CHANGELOG.md +++ b/age-plugin/CHANGELOG.md @@ -9,12 +9,15 @@ and this project adheres to Rust's notion of to 1.0.0 are beta releases. ## [Unreleased] + +## [0.6.0] - 2024-11-03 ### Added - `age_plugin::PluginHandler` - `impl age_plugin::identity::IdentityPluginV1 for std::convert::Infallible` - `impl age_plugin::recipient::RecipientPluginV1 for std::convert::Infallible` ### Changed +- Migrated to `age-core 0.11`. - `age_plugin::recipient::RecipientPluginV1` has a new `labels` method. Existing implementations of the trait should either return `HashSet::new()` to maintain existing compatibility, or return labels that apply the desired constraints. diff --git a/age-plugin/Cargo.toml b/age-plugin/Cargo.toml index 30fe48d..023b3c5 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.5.0" +version = "0.6.0" authors.workspace = true repository.workspace = true readme = "README.md" diff --git a/age/CHANGELOG.md b/age/CHANGELOG.md index a582e70..9cc9178 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.11.0] - 2024-11-03 ### Added - New streamlined APIs for use with a single recipient or identity and a small amount of data (that can fit entirely in memory): diff --git a/age/Cargo.toml b/age/Cargo.toml index 8c07f81..720270c 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.10.0" +version = "0.11.0" authors.workspace = true repository.workspace = true readme = "README.md" diff --git a/age/README.md b/age/README.md index 5b8ace3..e3a4cff 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.10" +age = "0.11" ``` See the [documentation](https://docs.rs/age) for examples. diff --git a/fuzz-afl/Cargo.lock b/fuzz-afl/Cargo.lock index 543d1ec..8622c91 100644 --- a/fuzz-afl/Cargo.lock +++ b/fuzz-afl/Cargo.lock @@ -26,7 +26,7 @@ dependencies = [ [[package]] name = "age" -version = "0.10.0" +version = "0.11.0" dependencies = [ "age-core", "base64", @@ -50,7 +50,7 @@ dependencies = [ [[package]] name = "age-core" -version = "0.10.0" +version = "0.11.0" dependencies = [ "base64", "chacha20poly1305", diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index a12faf6..225219d 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -14,7 +14,7 @@ dependencies = [ [[package]] name = "age" -version = "0.10.0" +version = "0.11.0" dependencies = [ "age-core", "base64", @@ -38,7 +38,7 @@ dependencies = [ [[package]] name = "age-core" -version = "0.10.0" +version = "0.11.0" dependencies = [ "base64", "chacha20poly1305", diff --git a/rage/CHANGELOG.md b/rage/CHANGELOG.md index 50a288c..347ac10 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.11.0] - 2024-11-03 ### Added - Partial French translation! diff --git a/rage/Cargo.toml b/rage/Cargo.toml index 865cc43..799c03f 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.10.0" +version = "0.11.0" authors.workspace = true repository.workspace = true readme = "../README.md" diff --git a/rage/tests/cmd/rage-keygen/version.toml b/rage/tests/cmd/rage-keygen/version.toml index e7ab588..d3dad01 100644 --- a/rage/tests/cmd/rage-keygen/version.toml +++ b/rage/tests/cmd/rage-keygen/version.toml @@ -1,6 +1,6 @@ bin.name = "rage-keygen" args = "--version" stdout = """ -rage-keygen 0.10.0 +rage-keygen 0.11.0 """ stderr = "" diff --git a/rage/tests/cmd/rage-mount/version.toml b/rage/tests/cmd/rage-mount/version.toml index 283726f..0117dd4 100644 --- a/rage/tests/cmd/rage-mount/version.toml +++ b/rage/tests/cmd/rage-mount/version.toml @@ -1,6 +1,6 @@ bin.name = "rage-mount" args = "--version" stdout = """ -rage-mount 0.10.0 +rage-mount 0.11.0 """ stderr = "" diff --git a/rage/tests/cmd/rage/version.toml b/rage/tests/cmd/rage/version.toml index 2d3ac3b..3443bd2 100644 --- a/rage/tests/cmd/rage/version.toml +++ b/rage/tests/cmd/rage/version.toml @@ -1,6 +1,6 @@ bin.name = "rage" args = "--version" stdout = """ -rage 0.10.0 +rage 0.11.0 """ stderr = ""