This commit is contained in:
Jack Grigg 2022-05-02 00:43:22 +00:00
parent 54754e0616
commit 0787472339
12 changed files with 24 additions and 16 deletions

8
Cargo.lock generated
View file

@ -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",

View file

@ -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`

View file

@ -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 <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.3.0] - 2022-05-02
### Added
- `age_plugin::Callbacks::confirm`

View file

@ -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 <thestr4d@gmail.com>"]
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"

View file

@ -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.

View file

@ -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 <thestr4d@gmail.com>"]
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

View file

@ -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.

4
fuzz-afl/Cargo.lock generated
View file

@ -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",

4
fuzz/Cargo.lock generated
View file

@ -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",

View file

@ -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

View file

@ -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 <thestr4d@gmail.com>"]
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"