mirror of
https://github.com/str4d/rage.git
synced 2025-04-02 02:17:42 +03:00
v0.11.0
This commit is contained in:
parent
e3a5c5fe8c
commit
d35d442f91
16 changed files with 27 additions and 18 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -60,7 +60,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"aes",
|
||||
"aes-gcm",
|
||||
|
@ -110,7 +110,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age-core"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"chacha20poly1305",
|
||||
|
@ -126,7 +126,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age-plugin"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
dependencies = [
|
||||
"age-core",
|
||||
"base64",
|
||||
|
@ -2042,7 +2042,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "rage"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"age",
|
||||
"chrono",
|
||||
|
|
|
@ -15,8 +15,8 @@ repository = "https://github.com/str4d/rage"
|
|||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[workspace.dependencies]
|
||||
age = { version = "0.10.0", path = "age" }
|
||||
age-core = { version = "0.10.0", path = "age-core" }
|
||||
age = { version = "0.11.0", path = "age" }
|
||||
age-core = { version = "0.11.0", path = "age-core" }
|
||||
|
||||
# Dependencies required by the age specification:
|
||||
# - Base64 from RFC 4648
|
||||
|
|
|
@ -7,6 +7,8 @@ and this project adheres to Rust's notion of
|
|||
to 1.0.0 are beta releases.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.11.0] - 2024-11-03
|
||||
### Added
|
||||
- `age_core::format`:
|
||||
- `FileKey::new`
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "age-core"
|
||||
description = "[BETA] Common functions used across the age crates"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
readme = "README.md"
|
||||
|
|
|
@ -9,12 +9,15 @@ and this project adheres to Rust's notion of
|
|||
to 1.0.0 are beta releases.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.6.0] - 2024-11-03
|
||||
### Added
|
||||
- `age_plugin::PluginHandler`
|
||||
- `impl age_plugin::identity::IdentityPluginV1 for std::convert::Infallible`
|
||||
- `impl age_plugin::recipient::RecipientPluginV1 for std::convert::Infallible`
|
||||
|
||||
### Changed
|
||||
- Migrated to `age-core 0.11`.
|
||||
- `age_plugin::recipient::RecipientPluginV1` has a new `labels` method. Existing
|
||||
implementations of the trait should either return `HashSet::new()` to maintain
|
||||
existing compatibility, or return labels that apply the desired constraints.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "age-plugin"
|
||||
description = "[BETA] API for writing age plugins."
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
readme = "README.md"
|
||||
|
|
|
@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
|
|||
to 1.0.0 are beta releases.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.11.0] - 2024-11-03
|
||||
### Added
|
||||
- New streamlined APIs for use with a single recipient or identity and a small
|
||||
amount of data (that can fit entirely in memory):
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "age"
|
||||
description = "[BETA] A simple, secure, and modern encryption library."
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
readme = "README.md"
|
||||
|
|
|
@ -23,7 +23,7 @@ The reference interoperable Go implementation is available at
|
|||
Add this line to your `Cargo.toml`:
|
||||
|
||||
```
|
||||
age = "0.10"
|
||||
age = "0.11"
|
||||
```
|
||||
|
||||
See the [documentation](https://docs.rs/age) for examples.
|
||||
|
|
4
fuzz-afl/Cargo.lock
generated
4
fuzz-afl/Cargo.lock
generated
|
@ -26,7 +26,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"age-core",
|
||||
"base64",
|
||||
|
@ -50,7 +50,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age-core"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"chacha20poly1305",
|
||||
|
|
4
fuzz/Cargo.lock
generated
4
fuzz/Cargo.lock
generated
|
@ -14,7 +14,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"age-core",
|
||||
"base64",
|
||||
|
@ -38,7 +38,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age-core"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"chacha20poly1305",
|
||||
|
|
|
@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
|
|||
to 1.0.0 are beta releases.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.11.0] - 2024-11-03
|
||||
### Added
|
||||
- Partial French translation!
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "rage"
|
||||
description = "[BETA] A simple, secure, and modern encryption tool."
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
readme = "../README.md"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
bin.name = "rage-keygen"
|
||||
args = "--version"
|
||||
stdout = """
|
||||
rage-keygen 0.10.0
|
||||
rage-keygen 0.11.0
|
||||
"""
|
||||
stderr = ""
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
bin.name = "rage-mount"
|
||||
args = "--version"
|
||||
stdout = """
|
||||
rage-mount 0.10.0
|
||||
rage-mount 0.11.0
|
||||
"""
|
||||
stderr = ""
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
bin.name = "rage"
|
||||
args = "--version"
|
||||
stdout = """
|
||||
rage 0.10.0
|
||||
rage 0.11.0
|
||||
"""
|
||||
stderr = ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue