This commit is contained in:
Jack Grigg 2024-02-04 22:33:22 +00:00
parent 5511d8cecb
commit e833cd19e4
16 changed files with 28 additions and 18 deletions

8
Cargo.lock generated
View file

@ -54,7 +54,7 @@ dependencies = [
[[package]] [[package]]
name = "age" name = "age"
version = "0.9.2" version = "0.10.0"
dependencies = [ dependencies = [
"aes", "aes",
"aes-gcm", "aes-gcm",
@ -104,7 +104,7 @@ dependencies = [
[[package]] [[package]]
name = "age-core" name = "age-core"
version = "0.9.0" version = "0.10.0"
dependencies = [ dependencies = [
"base64", "base64",
"chacha20poly1305", "chacha20poly1305",
@ -120,7 +120,7 @@ dependencies = [
[[package]] [[package]]
name = "age-plugin" name = "age-plugin"
version = "0.4.0" version = "0.5.0"
dependencies = [ dependencies = [
"age-core", "age-core",
"base64", "base64",
@ -2002,7 +2002,7 @@ dependencies = [
[[package]] [[package]]
name = "rage" name = "rage"
version = "0.9.2" version = "0.10.0"
dependencies = [ dependencies = [
"age", "age",
"chrono", "chrono",

View file

@ -15,8 +15,8 @@ repository = "https://github.com/str4d/rage"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
[workspace.dependencies] [workspace.dependencies]
age = { version = "0.9.2", path = "age" } age = { version = "0.10.0", path = "age" }
age-core = { version = "0.9.0", path = "age-core" } age-core = { version = "0.10.0", path = "age-core" }
# Dependencies required by the age specification: # Dependencies required by the age specification:
# - Base64 from RFC 4648 # - Base64 from RFC 4648

View file

@ -7,6 +7,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases. to 1.0.0 are beta releases.
## [Unreleased] ## [Unreleased]
## [0.10.0] - 2024-02-04
### Added ### Added
- `impl Eq for age_core::format::Stanza` - `impl Eq for age_core::format::Stanza`

View file

@ -1,7 +1,7 @@
[package] [package]
name = "age-core" name = "age-core"
description = "[BETA] Common functions used across the age crates" description = "[BETA] Common functions used across the age crates"
version = "0.9.0" version = "0.10.0"
authors.workspace = true authors.workspace = true
repository.workspace = true repository.workspace = true
readme = "README.md" readme = "README.md"

View file

@ -9,8 +9,11 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases. to 1.0.0 are beta releases.
## [Unreleased] ## [Unreleased]
## [0.5.0] - 2024-02-04
### Changed ### Changed
- MSRV is now 1.65.0. - MSRV is now 1.65.0.
- Migrated to `age-core 0.10`.
- `age_plugin::run_state_machine` now takes optional arguments, to enable the - `age_plugin::run_state_machine` now takes optional arguments, to enable the
creation of recipient-only or identity-only plugins. creation of recipient-only or identity-only plugins.

View file

@ -1,7 +1,7 @@
[package] [package]
name = "age-plugin" name = "age-plugin"
description = "[BETA] API for writing age plugins." description = "[BETA] API for writing age plugins."
version = "0.4.0" version = "0.5.0"
authors.workspace = true authors.workspace = true
repository.workspace = true repository.workspace = true
readme = "README.md" readme = "README.md"

View file

@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases. to 1.0.0 are beta releases.
## [Unreleased] ## [Unreleased]
## [0.10.0] - 2024-02-04
### Added ### Added
- Russian translation! - Russian translation!
- `age::cli_common`: - `age::cli_common`:

View file

@ -1,7 +1,7 @@
[package] [package]
name = "age" name = "age"
description = "[BETA] A simple, secure, and modern encryption library." description = "[BETA] A simple, secure, and modern encryption library."
version = "0.9.2" version = "0.10.0"
authors.workspace = true authors.workspace = true
repository.workspace = true repository.workspace = true
readme = "README.md" readme = "README.md"

View file

@ -23,7 +23,7 @@ The reference interoperable Go implementation is available at
Add this line to your `Cargo.toml`: Add this line to your `Cargo.toml`:
``` ```
age = "0.9" age = "0.10"
``` ```
See the [documentation](https://docs.rs/age) for examples. See the [documentation](https://docs.rs/age) for examples.

4
fuzz-afl/Cargo.lock generated
View file

@ -27,7 +27,7 @@ dependencies = [
[[package]] [[package]]
name = "age" name = "age"
version = "0.9.2" version = "0.10.0"
dependencies = [ dependencies = [
"age-core", "age-core",
"base64", "base64",
@ -51,7 +51,7 @@ dependencies = [
[[package]] [[package]]
name = "age-core" name = "age-core"
version = "0.9.0" version = "0.10.0"
dependencies = [ dependencies = [
"base64", "base64",
"chacha20poly1305", "chacha20poly1305",

4
fuzz/Cargo.lock generated
View file

@ -14,7 +14,7 @@ dependencies = [
[[package]] [[package]]
name = "age" name = "age"
version = "0.9.2" version = "0.10.0"
dependencies = [ dependencies = [
"age-core", "age-core",
"base64", "base64",
@ -38,7 +38,7 @@ dependencies = [
[[package]] [[package]]
name = "age-core" name = "age-core"
version = "0.9.0" version = "0.10.0"
dependencies = [ dependencies = [
"base64", "base64",
"chacha20poly1305", "chacha20poly1305",

View file

@ -9,7 +9,10 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases. to 1.0.0 are beta releases.
## [Unreleased] ## [Unreleased]
## [0.10.0] - 2024-02-04
### Added ### Added
- Russian translation!
- `rage-keygen -y IDENTITY_FILE` to convert identity files to recipients. - `rage-keygen -y IDENTITY_FILE` to convert identity files to recipients.
- Elvish completions to the Debian package. These are not automatically - Elvish completions to the Debian package. These are not automatically
discovered; Elvish users will need to manually import them. discovered; Elvish users will need to manually import them.

View file

@ -1,7 +1,7 @@
[package] [package]
name = "rage" name = "rage"
description = "[BETA] A simple, secure, and modern encryption tool." description = "[BETA] A simple, secure, and modern encryption tool."
version = "0.9.2" version = "0.10.0"
authors.workspace = true authors.workspace = true
repository.workspace = true repository.workspace = true
readme = "../README.md" readme = "../README.md"

View file

@ -1,6 +1,6 @@
bin.name = "rage-keygen" bin.name = "rage-keygen"
args = "--version" args = "--version"
stdout = """ stdout = """
rage-keygen 0.9.2 rage-keygen 0.10.0
""" """
stderr = "" stderr = ""

View file

@ -1,6 +1,6 @@
bin.name = "rage-mount" bin.name = "rage-mount"
args = "--version" args = "--version"
stdout = """ stdout = """
rage-mount 0.9.2 rage-mount 0.10.0
""" """
stderr = "" stderr = ""

View file

@ -1,6 +1,6 @@
bin.name = "rage" bin.name = "rage"
args = "--version" args = "--version"
stdout = """ stdout = """
rage 0.9.2 rage 0.10.0
""" """
stderr = "" stderr = ""