Skip to content

Commit

Permalink
Merge pull request #545 from str4d/release-0.11.0
Browse files Browse the repository at this point in the history
Release 0.11.0
  • Loading branch information
str4d authored Nov 3, 2024
2 parents 597f1aa + d35d442 commit 1744661
Show file tree
Hide file tree
Showing 19 changed files with 33 additions and 36 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ format. It features small explicit keys, no config options, and UNIX-style
composability.

The format specification is at [age-encryption.org/v1](https://age-encryption.org/v1).
age was designed by [@Benjojo12](https://twitter.com/Benjojo12) and
[@FiloSottile](https://twitter.com/FiloSottile).
age was designed by [@Benjojo](https://benjojo.co.uk/) and
[@FiloSottile](https://bsky.app/profile/did:plc:x2nsupeeo52oznrmplwapppl).

The reference interoperable Go implementation is available at
[filippo.io/age](https://filippo.io/age).
Expand Down
2 changes: 2 additions & 0 deletions age-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion age-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
3 changes: 3 additions & 0 deletions age-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion age-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 2 additions & 0 deletions age/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion age/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 3 additions & 3 deletions age/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ encryption and decryption of files or streams (e.g. in shell scripts), as well
as additional features such as mounting an encrypted archive.

The format specification is at [age-encryption.org/v1](https://age-encryption.org/v1).
The age format was designed by [@Benjojo12](https://twitter.com/Benjojo12) and
[@FiloSottile](https://twitter.com/FiloSottile).
The age format was designed by [@Benjojo](https://benjojo.co.uk/) and
[@FiloSottile](https://bsky.app/profile/did:plc:x2nsupeeo52oznrmplwapppl).

The reference interoperable Go implementation is available at
[filippo.io/age](https://filippo.io/age).
Expand All @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions fuzz-afl/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 1 addition & 7 deletions fuzz/fuzz_targets/decrypt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ use age::Decryptor;

fuzz_target!(|data: &[u8]| {
if let Ok(decryptor) = Decryptor::new(data) {
match decryptor {
Decryptor::Recipients(d) => {
let _ = d.decrypt(iter::empty());
}
// Don't pay the cost of scrypt while fuzzing.
Decryptor::Passphrase(_) => (),
}
let _ = decryptor.decrypt(iter::empty());
}
});
8 changes: 1 addition & 7 deletions fuzz/fuzz_targets/decrypt_buffered.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ use age::Decryptor;

fuzz_target!(|data: &[u8]| {
if let Ok(decryptor) = Decryptor::new_buffered(data) {
match decryptor {
Decryptor::Recipients(d) => {
let _ = d.decrypt(iter::empty());
}
// Don't pay the cost of scrypt while fuzzing.
Decryptor::Passphrase(_) => (),
}
let _ = decryptor.decrypt(iter::empty());
}
});
2 changes: 2 additions & 0 deletions rage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!

Expand Down
2 changes: 1 addition & 1 deletion rage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion rage/tests/cmd/rage-keygen/version.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bin.name = "rage-keygen"
args = "--version"
stdout = """
rage-keygen 0.10.0
rage-keygen 0.11.0
"""
stderr = ""
2 changes: 1 addition & 1 deletion rage/tests/cmd/rage-mount/version.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bin.name = "rage-mount"
args = "--version"
stdout = """
rage-mount 0.10.0
rage-mount 0.11.0
"""
stderr = ""
2 changes: 1 addition & 1 deletion rage/tests/cmd/rage/version.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bin.name = "rage"
args = "--version"
stdout = """
rage 0.10.0
rage 0.11.0
"""
stderr = ""

0 comments on commit 1744661

Please sign in to comment.