This commit is contained in:
Jack Grigg 2021-10-18 15:37:41 +01:00
parent 3e5c7fa85d
commit 4c79db3fe0
12 changed files with 24 additions and 16 deletions

8
Cargo.lock generated
View file

@ -45,7 +45,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"aes",
"age-core",
@ -90,7 +90,7 @@ dependencies = [
[[package]]
name = "age-core"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"base64",
"chacha20poly1305",
@ -105,7 +105,7 @@ dependencies = [
[[package]]
name = "age-plugin"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"age-core",
"bech32",
@ -1767,7 +1767,7 @@ dependencies = [
[[package]]
name = "rage"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"age",
"chrono",

View file

@ -7,6 +7,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
## [0.7.0] - 2021-10-18
### Added
- `age_core::secrecy`, which re-exports the `secrecy` crate.
- `age_core::plugin::Error`

View file

@ -1,7 +1,7 @@
[package]
name = "age-core"
description = "[BETA] Common functions used across the age crates"
version = "0.6.0"
version = "0.7.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
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.
## [Unreleased]
## [0.2.0] - 2021-10-18
### Changed
- MSRV is now 1.51.0.
- `age_plugin::Callbacks` methods now return `age_core::plugin::Error` instead

View file

@ -1,7 +1,7 @@
[package]
name = "age-plugin"
description = "[BETA] API for writing age plugins."
version = "0.1.0"
version = "0.2.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"
@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
age-core = { version = "0.6.0", path = "../age-core", features = ["plugin"] }
age-core = { version = "0.7.0", path = "../age-core", features = ["plugin"] }
bech32 = "0.8"
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.
## [Unreleased]
## [0.7.0] - 2021-10-18
### Added
- `age::encrypted::Identity`, for decrypting files with passphrase-encrypted
age identity files.

View file

@ -1,7 +1,7 @@
[package]
name = "age"
description = "[BETA] A simple, secure, and modern encryption library."
version = "0.6.0"
version = "0.7.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"
@ -14,7 +14,7 @@ edition = "2018"
maintenance = { status = "experimental" }
[dependencies]
age-core = { version = "0.6.0", path = "../age-core" }
age-core = { version = "0.7.0", path = "../age-core" }
# Dependencies required by the age specification:
# - Base64 from RFC 4648

View file

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

4
fuzz-afl/Cargo.lock generated
View file

@ -30,7 +30,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"age-core",
"base64",
@ -56,7 +56,7 @@ dependencies = [
[[package]]
name = "age-core"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"base64",
"chacha20poly1305",

4
fuzz/Cargo.lock generated
View file

@ -17,7 +17,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"age-core",
"base64",
@ -43,7 +43,7 @@ dependencies = [
[[package]]
name = "age-core"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"base64",
"chacha20poly1305",

View file

@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
## [0.7.0] - 2021-10-18
### Added
- `-i/--identity` now accepts passphrase-encrypted age identity files.
- The `-j PLUGIN_NAME` flag, which allows decrypting with a plugin using its

View file

@ -1,7 +1,7 @@
[package]
name = "rage"
description = "[BETA] A simple, secure, and modern encryption tool."
version = "0.6.0"
version = "0.7.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "../README.md"
@ -43,7 +43,7 @@ maintenance = { status = "experimental" }
[dependencies]
# rage and rage-keygen dependencies
age = { version = "0.6.0", path = "../age", features = ["armor", "cli-common", "plugin"] }
age = { version = "0.7.0", path = "../age", features = ["armor", "cli-common", "plugin"] }
chrono = "0.4"
console = { version = "0.15", default-features = false }
env_logger = "0.9"