Skip to content

Commit ff4b020

Browse files
authored
Merge pull request #351 from str4d/release-0.9.0
Release 0.9.0
2 parents 9d33fbb + ec025be commit ff4b020

File tree

12 files changed

+25
-18
lines changed

12 files changed

+25
-18
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

age-core/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to Rust's notion of
77
to 1.0.0 are beta releases.
88

99
## [Unreleased]
10+
11+
## [0.9.0] - 2022-10-27
1012
### Changed
1113
- MSRV is now 1.59.0.
1214
- Migrated to `aead 0.5`.

age-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "age-core"
33
description = "[BETA] Common functions used across the age crates"
4-
version = "0.8.0"
4+
version = "0.9.0"
55
authors = ["Jack Grigg <[email protected]>"]
66
repository = "https://github.com/str4d/rage"
77
readme = "README.md"

age-plugin/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ and this project adheres to Rust's notion of
99
to 1.0.0 are beta releases.
1010

1111
## [Unreleased]
12+
13+
## [0.4.0] - 2022-10-27
1214
### Changed
1315
- MSRV is now 1.59.0.
16+
- Migrated to `age-core 0.9`.
1417

1518
## [0.3.0] - 2022-05-02
1619
### Added

age-plugin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "age-plugin"
33
description = "[BETA] API for writing age plugins."
4-
version = "0.3.0"
4+
version = "0.4.0"
55
authors = ["Jack Grigg <[email protected]>"]
66
repository = "https://github.com/str4d/rage"
77
readme = "README.md"
@@ -10,7 +10,7 @@ edition = "2021"
1010
rust-version = "1.59"
1111

1212
[dependencies]
13-
age-core = { version = "0.8.0", path = "../age-core", features = ["plugin"] }
13+
age-core = { version = "0.9.0", path = "../age-core", features = ["plugin"] }
1414
base64 = "0.13"
1515
bech32 = "0.9"
1616
chrono = "0.4"

age/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
99
to 1.0.0 are beta releases.
1010

1111
## [Unreleased]
12+
13+
## [0.9.0] - 2022-10-27
1214
### Added
1315
- `age::armor::ArmoredReadError`, used to wrap armor-specific read errors inside
1416
`std::io::Error`.

age/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "age"
33
description = "[BETA] A simple, secure, and modern encryption library."
4-
version = "0.8.1"
4+
version = "0.9.0"
55
authors = ["Jack Grigg <[email protected]>"]
66
repository = "https://github.com/str4d/rage"
77
readme = "README.md"
@@ -15,7 +15,7 @@ rust-version = "1.59"
1515
maintenance = { status = "experimental" }
1616

1717
[dependencies]
18-
age-core = { version = "0.8.0", path = "../age-core" }
18+
age-core = { version = "0.9.0", path = "../age-core" }
1919

2020
# Dependencies required by the age specification:
2121
# - Base64 from RFC 4648

age/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The reference interoperable Go implementation is available at
2323
Add this line to your `Cargo.toml`:
2424

2525
```
26-
age = "0.8"
26+
age = "0.9"
2727
```
2828

2929
See the [documentation](https://docs.rs/age) for examples.

fuzz-afl/Cargo.lock

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fuzz/Cargo.lock

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)