This commit is contained in:
Jack Grigg 2020-11-22 18:51:27 +00:00
parent 5398ddaede
commit 77273e0378
10 changed files with 19 additions and 13 deletions

6
Cargo.lock generated
View file

@ -60,7 +60,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"aes",
"aes-ctr",
@ -103,7 +103,7 @@ dependencies = [
[[package]]
name = "age-core"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"base64 0.12.3",
"c2-chacha",
@ -1569,7 +1569,7 @@ dependencies = [
[[package]]
name = "rage"
version = "0.4.0"
version = "0.5.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.5.0] - 2020-11-22
### Added
- Several structs used when implementing the `age::Identity` and
`age::Recipient` traits:

View file

@ -1,7 +1,7 @@
[package]
name = "age-core"
description = "[BETA] Common functions used across the age crates"
version = "0.4.0"
version = "0.5.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.5.0] - 2020-11-22
### Added
- Italian, Spanish, and Chinese translations!
- New core traits, implemented by all relevant `age` types:

View file

@ -1,7 +1,7 @@
[package]
name = "age"
description = "[BETA] A simple, secure, and modern encryption library."
version = "0.4.0"
version = "0.5.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.4.0", path = "../age-core" }
age-core = { version = "0.5.0", path = "../age-core" }
# Dependencies required by the age specification:
# - Base64 from RFC 4648

View file

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

4
fuzz-afl/Cargo.lock generated
View file

@ -24,7 +24,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"age-core",
"base64",
@ -51,7 +51,7 @@ dependencies = [
[[package]]
name = "age-core"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"base64",
"c2-chacha",

4
fuzz/Cargo.lock generated
View file

@ -11,7 +11,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"age-core",
"base64",
@ -38,7 +38,7 @@ dependencies = [
[[package]]
name = "age-core"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"base64",
"c2-chacha",

View file

@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
## [0.5.0] - 2020-11-22
### Added
- Italian, Spanish, and Chinese translations!
- `ssh` feature flag, enabled by default. It can be disabled to remove support

View file

@ -1,7 +1,7 @@
[package]
name = "rage"
description = "[BETA] A simple, secure, and modern encryption tool."
version = "0.4.0"
version = "0.5.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.4.0", path = "../age", features = ["armor", "cli-common"] }
age = { version = "0.5.0", path = "../age", features = ["armor", "cli-common"] }
chrono = "0.4"
console = "0.13"
env_logger = "0.8"