This commit is contained in:
Jack Grigg 2022-10-27 02:28:43 +00:00
parent 9d33fbb931
commit ec025bea2a
12 changed files with 25 additions and 18 deletions

8
Cargo.lock generated
View file

@ -52,7 +52,7 @@ dependencies = [
[[package]] [[package]]
name = "age" name = "age"
version = "0.8.1" version = "0.9.0"
dependencies = [ dependencies = [
"aes 0.8.1", "aes 0.8.1",
"age-core", "age-core",
@ -104,7 +104,7 @@ dependencies = [
[[package]] [[package]]
name = "age-core" name = "age-core"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"base64", "base64",
"chacha20poly1305", "chacha20poly1305",
@ -120,7 +120,7 @@ dependencies = [
[[package]] [[package]]
name = "age-plugin" name = "age-plugin"
version = "0.3.0" version = "0.4.0"
dependencies = [ dependencies = [
"age-core", "age-core",
"base64", "base64",
@ -1919,7 +1919,7 @@ dependencies = [
[[package]] [[package]]
name = "rage" name = "rage"
version = "0.8.1" version = "0.9.0"
dependencies = [ dependencies = [
"age", "age",
"chrono", "chrono",

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.9.0] - 2022-10-27
### Changed ### Changed
- MSRV is now 1.59.0. - MSRV is now 1.59.0.
- Migrated to `aead 0.5`. - Migrated to `aead 0.5`.

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.8.0" version = "0.9.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"] authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage" repository = "https://github.com/str4d/rage"
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.4.0] - 2022-10-27
### Changed ### Changed
- MSRV is now 1.59.0. - MSRV is now 1.59.0.
- Migrated to `age-core 0.9`.
## [0.3.0] - 2022-05-02 ## [0.3.0] - 2022-05-02
### Added ### Added

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.3.0" version = "0.4.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"] authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage" repository = "https://github.com/str4d/rage"
readme = "README.md" readme = "README.md"
@ -10,7 +10,7 @@ edition = "2021"
rust-version = "1.59" rust-version = "1.59"
[dependencies] [dependencies]
age-core = { version = "0.8.0", path = "../age-core", features = ["plugin"] } age-core = { version = "0.9.0", path = "../age-core", features = ["plugin"] }
base64 = "0.13" base64 = "0.13"
bech32 = "0.9" bech32 = "0.9"
chrono = "0.4" chrono = "0.4"

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.9.0] - 2022-10-27
### Added ### Added
- `age::armor::ArmoredReadError`, used to wrap armor-specific read errors inside - `age::armor::ArmoredReadError`, used to wrap armor-specific read errors inside
`std::io::Error`. `std::io::Error`.

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.8.1" version = "0.9.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"] authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage" repository = "https://github.com/str4d/rage"
readme = "README.md" readme = "README.md"
@ -15,7 +15,7 @@ rust-version = "1.59"
maintenance = { status = "experimental" } maintenance = { status = "experimental" }
[dependencies] [dependencies]
age-core = { version = "0.8.0", path = "../age-core" } age-core = { version = "0.9.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

@ -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.8" age = "0.9"
``` ```
See the [documentation](https://docs.rs/age) for examples. See the [documentation](https://docs.rs/age) for examples.

5
fuzz-afl/Cargo.lock generated
View file

@ -27,13 +27,12 @@ dependencies = [
[[package]] [[package]]
name = "age" name = "age"
version = "0.8.1" version = "0.9.0"
dependencies = [ dependencies = [
"age-core", "age-core",
"base64", "base64",
"bech32", "bech32",
"chacha20poly1305", "chacha20poly1305",
"cipher",
"cookie-factory", "cookie-factory",
"hkdf", "hkdf",
"hmac", "hmac",
@ -54,7 +53,7 @@ dependencies = [
[[package]] [[package]]
name = "age-core" name = "age-core"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"base64", "base64",
"chacha20poly1305", "chacha20poly1305",

5
fuzz/Cargo.lock generated
View file

@ -14,13 +14,12 @@ dependencies = [
[[package]] [[package]]
name = "age" name = "age"
version = "0.8.1" version = "0.9.0"
dependencies = [ dependencies = [
"age-core", "age-core",
"base64", "base64",
"bech32", "bech32",
"chacha20poly1305", "chacha20poly1305",
"cipher",
"cookie-factory", "cookie-factory",
"hkdf", "hkdf",
"hmac", "hmac",
@ -41,7 +40,7 @@ dependencies = [
[[package]] [[package]]
name = "age-core" name = "age-core"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"base64", "base64",
"chacha20poly1305", "chacha20poly1305",

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.9.0] - 2022-10-27
### Changed ### Changed
- MSRV is now 1.59.0. - MSRV is now 1.59.0.

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.8.1" version = "0.9.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"] authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage" repository = "https://github.com/str4d/rage"
readme = "../README.md" readme = "../README.md"
@ -54,7 +54,7 @@ maintenance = { status = "experimental" }
[dependencies] [dependencies]
# rage and rage-keygen dependencies # rage and rage-keygen dependencies
age = { version = "0.8.1", path = "../age", features = ["armor", "cli-common", "plugin"] } age = { version = "0.9.0", path = "../age", features = ["armor", "cli-common", "plugin"] }
chrono = "0.4" chrono = "0.4"
console = { version = "0.15", default-features = false } console = { version = "0.15", default-features = false }
env_logger = "0.9" env_logger = "0.9"