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