mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
Merge branch 'release-0.5.1' into main
This commit is contained in:
commit
e837506a7f
7 changed files with 18 additions and 6 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -70,7 +70,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age"
|
name = "age"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes",
|
"aes",
|
||||||
"aes-ctr",
|
"aes-ctr",
|
||||||
|
@ -1619,7 +1619,7 @@ checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rage"
|
name = "rage"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"age",
|
"age",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|
|
@ -58,6 +58,12 @@ to 1.0.0 are beta releases.
|
||||||
- `StreamReader::seek(SeekFrom::End(0))` now seeks to the correct position when
|
- `StreamReader::seek(SeekFrom::End(0))` now seeks to the correct position when
|
||||||
the plaintext is an exact multiple of the chunk size.
|
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
|
## [0.5.0] - 2020-11-22
|
||||||
### Added
|
### Added
|
||||||
- Italian, Spanish, and Chinese translations!
|
- Italian, Spanish, and Chinese translations!
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "age"
|
name = "age"
|
||||||
description = "[BETA] A simple, secure, and modern encryption library."
|
description = "[BETA] A simple, secure, and modern encryption library."
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||||
repository = "https://github.com/str4d/rage"
|
repository = "https://github.com/str4d/rage"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
2
fuzz-afl/Cargo.lock
generated
2
fuzz-afl/Cargo.lock
generated
|
@ -34,7 +34,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age"
|
name = "age"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"age-core",
|
"age-core",
|
||||||
"base64",
|
"base64",
|
||||||
|
|
2
fuzz/Cargo.lock
generated
2
fuzz/Cargo.lock
generated
|
@ -21,7 +21,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age"
|
name = "age"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"age-core",
|
"age-core",
|
||||||
"base64",
|
"base64",
|
||||||
|
|
|
@ -49,6 +49,12 @@ to 1.0.0 are beta releases.
|
||||||
- Output files are now opened lazily, which avoids leaving behind an empty file
|
- Output files are now opened lazily, which avoids leaving behind an empty file
|
||||||
when an error occurs before we write the header.
|
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
|
## [0.5.0] - 2020-11-22
|
||||||
### Added
|
### Added
|
||||||
- Italian, Spanish, and Chinese translations!
|
- Italian, Spanish, and Chinese translations!
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rage"
|
name = "rage"
|
||||||
description = "[BETA] A simple, secure, and modern encryption tool."
|
description = "[BETA] A simple, secure, and modern encryption tool."
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||||
repository = "https://github.com/str4d/rage"
|
repository = "https://github.com/str4d/rage"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue