Skip to content

Commit

Permalink
Merge pull request #351 from str4d/release-0.9.0
Browse files Browse the repository at this point in the history
Release 0.9.0
  • Loading branch information
str4d committed Oct 27, 2022
2 parents 9d33fbb + ec025be commit ff4b020
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 18 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions age-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.

## [Unreleased]

## [0.9.0] - 2022-10-27
### Changed
- MSRV is now 1.59.0.
- Migrated to `aead 0.5`.
Expand Down
2 changes: 1 addition & 1 deletion age-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "age-core"
description = "[BETA] Common functions used across the age crates"
version = "0.8.0"
version = "0.9.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"
Expand Down
3 changes: 3 additions & 0 deletions age-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.

## [Unreleased]

## [0.4.0] - 2022-10-27
### Changed
- MSRV is now 1.59.0.
- Migrated to `age-core 0.9`.

## [0.3.0] - 2022-05-02
### Added
Expand Down
4 changes: 2 additions & 2 deletions age-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "age-plugin"
description = "[BETA] API for writing age plugins."
version = "0.3.0"
version = "0.4.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"
Expand All @@ -10,7 +10,7 @@ edition = "2021"
rust-version = "1.59"

[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"
bech32 = "0.9"
chrono = "0.4"
Expand Down
2 changes: 2 additions & 0 deletions age/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.

## [Unreleased]

## [0.9.0] - 2022-10-27
### Added
- `age::armor::ArmoredReadError`, used to wrap armor-specific read errors inside
`std::io::Error`.
Expand Down
4 changes: 2 additions & 2 deletions age/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "age"
description = "[BETA] A simple, secure, and modern encryption library."
version = "0.8.1"
version = "0.9.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"
Expand All @@ -15,7 +15,7 @@ rust-version = "1.59"
maintenance = { status = "experimental" }

[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:
# - Base64 from RFC 4648
Expand Down
2 changes: 1 addition & 1 deletion age/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The reference interoperable Go implementation is available at
Add this line to your `Cargo.toml`:

```
age = "0.8"
age = "0.9"
```

See the [documentation](https://docs.rs/age) for examples.
Expand Down
5 changes: 2 additions & 3 deletions fuzz-afl/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions rage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.

## [Unreleased]

## [0.9.0] - 2022-10-27
### Changed
- MSRV is now 1.59.0.

Expand Down
4 changes: 2 additions & 2 deletions rage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rage"
description = "[BETA] A simple, secure, and modern encryption tool."
version = "0.8.1"
version = "0.9.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "../README.md"
Expand Down Expand Up @@ -54,7 +54,7 @@ maintenance = { status = "experimental" }

[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"
console = { version = "0.15", default-features = false }
env_logger = "0.9"
Expand Down

0 comments on commit ff4b020

Please sign in to comment.