Skip to content

Commit

Permalink
Merge pull request #155 from str4d/release-0.5.0
Browse files Browse the repository at this point in the history
Release 0.5.0
  • Loading branch information
str4d committed Nov 22, 2020
2 parents 51b6a72 + 403d0ee commit 48f5382
Show file tree
Hide file tree
Showing 12 changed files with 78 additions and 68 deletions.
52 changes: 26 additions & 26 deletions Cargo.lock

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

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.5.0] - 2020-11-22
### Added
- Several structs used when implementing the `age::Identity` and
`age::Recipient` traits:
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.4.0"
version = "0.5.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion age-core/src/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub fn grease_the_joint() -> Stanza {
let tag = format!("{}-grease", gen_arbitrary_string(&mut rng));

// Between this and the above generation bounds, the first line of the recipient
// stanza will be between five and 69 characters.
// stanza will be between eight and 66 characters.
let args = (0..Uniform::from(0..5).sample(&mut rng))
.map(|_| gen_arbitrary_string(&mut rng))
.collect();
Expand Down
4 changes: 3 additions & 1 deletion age/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.

## [Unreleased]

## [0.5.0] - 2020-11-22
### Added
- Support for translations!
- Italian, Spanish, and Chinese translations!
- New core traits, implemented by all relevant `age` types:
- `age::Identity`, representing an identity that can decrypt an age file.
- `age::Recipient`, representing a potential recipient of an age file.
Expand Down
4 changes: 2 additions & 2 deletions 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.4.0"
version = "0.5.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"
Expand All @@ -14,7 +14,7 @@ edition = "2018"
maintenance = { status = "experimental" }

[dependencies]
age-core = { version = "0.4.0", path = "../age-core" }
age-core = { version = "0.5.0", path = "../age-core" }

# Dependencies required by the age specification:
# - Base64 from RFC 4648
Expand Down
2 changes: 1 addition & 1 deletion age/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The reference interoperable Golang implementation is available at
Add this line to your `Cargo.toml`:

```
age = "0.4"
age = "0.5"
```

See the [documentation](https://docs.rs/age) for examples.
Expand Down
3 changes: 3 additions & 0 deletions age/src/i18n.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ lazy_static! {
}

/// Loads a localized age string.
#[doc(hidden)]
#[macro_export]
macro_rules! fl {
($message_id:literal) => {{
Expand All @@ -24,6 +25,7 @@ macro_rules! fl {
}

/// age-localized version of the write! macro.
#[doc(hidden)]
#[macro_export]
macro_rules! wfl {
($f:ident, $message_id:literal) => {
Expand All @@ -32,6 +34,7 @@ macro_rules! wfl {
}

/// age-localized version of the writeln! macro.
#[doc(hidden)]
#[macro_export]
macro_rules! wlnfl {
($f:ident, $message_id:literal) => {
Expand Down
32 changes: 16 additions & 16 deletions fuzz-afl/Cargo.lock

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

Loading

0 comments on commit 48f5382

Please sign in to comment.