Merge branch 'release-0.5.1' into main

This commit is contained in:
Jack Grigg 2021-02-13 17:51:33 +00:00
commit e837506a7f
7 changed files with 18 additions and 6 deletions

4
Cargo.lock generated
View file

@ -70,7 +70,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.5.0"
version = "0.5.1"
dependencies = [
"aes",
"aes-ctr",
@ -1619,7 +1619,7 @@ checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
[[package]]
name = "rage"
version = "0.5.0"
version = "0.5.1"
dependencies = [
"age",
"chrono",

View file

@ -58,6 +58,12 @@ to 1.0.0 are beta releases.
- `StreamReader::seek(SeekFrom::End(0))` now seeks to the correct position when
the plaintext is an exact multiple of the chunk size.
## [0.5.1] - 2021-02-13
### Fixed
- Bumped dependencies to `i18n-embed-fl 0.3` and `i18n-embed 0.10.2` to fix a
transient dependency breakage, that broke `cargo install rage` because
[`cargo install` ignores `Cargo.lock`](https://github.com/rust-lang/cargo/issues/7169).
## [0.5.0] - 2020-11-22
### Added
- Italian, Spanish, and Chinese translations!

View file

@ -1,7 +1,7 @@
[package]
name = "age"
description = "[BETA] A simple, secure, and modern encryption library."
version = "0.5.0"
version = "0.5.1"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"

2
fuzz-afl/Cargo.lock generated
View file

@ -34,7 +34,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.5.0"
version = "0.5.1"
dependencies = [
"age-core",
"base64",

2
fuzz/Cargo.lock generated
View file

@ -21,7 +21,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.5.0"
version = "0.5.1"
dependencies = [
"age-core",
"base64",

View file

@ -49,6 +49,12 @@ to 1.0.0 are beta releases.
- Output files are now opened lazily, which avoids leaving behind an empty file
when an error occurs before we write the header.
## [0.5.1] - 2021-02-13
### Fixed
- Bumped dependencies to `i18n-embed-fl 0.3` and `i18n-embed 0.10.2` to fix a
transient dependency breakage, that broke `cargo install rage` because
[`cargo install` ignores `Cargo.lock`](https://github.com/rust-lang/cargo/issues/7169).
## [0.5.0] - 2020-11-22
### Added
- Italian, Spanish, and Chinese translations!

View file

@ -1,7 +1,7 @@
[package]
name = "rage"
description = "[BETA] A simple, secure, and modern encryption tool."
version = "0.5.0"
version = "0.5.1"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "../README.md"