Skip to content

Commit

Permalink
Release v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
thibmeu committed Feb 29, 2024
1 parent 4f6d963 commit 19aecb6
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The reference interroperable Go implementation is available at [drand/tlock](htt

| Environment | CLI Command |
|:-------------------|:--------------------------|
| Cargo (Rust 1.67+) | `cargo install tlock_age` |
| Cargo (Rust 1.74+) | `cargo install tlock_age` |

The library is tested against the following targets: `x86_64-unknown-linux-gnu`, `armv7-unknown-linux-gnueabihf`, `aarch64-unknown-linux-gnu`, `wasm32-wasi`.

Expand Down
2 changes: 2 additions & 0 deletions age-plugin-tlock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.1.1] - 2024-02-29

### Changed

- Update dependencies
Expand Down
4 changes: 2 additions & 2 deletions age-plugin-tlock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "age-plugin-tlock"
description = "tlock plugin for age clients."
version = "0.1.0"
version = "0.1.1"
authors = ["Thibault Meunier <[email protected]>"]
edition = "2021"
readme = "./README.md"
Expand All @@ -21,4 +21,4 @@ clap-verbosity-flag = "2.2.0"
drand_core = { workspace = true }
hex = { workspace = true }
thiserror = { workspace = true }
tlock_age = { version = "0.0.4", path = "../tlock_age", features = ["internal"] }
tlock_age = { version = "0.0.5", path = "../tlock_age", features = ["internal"] }
2 changes: 1 addition & 1 deletion age-plugin-tlock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

| Environment | CLI Command |
|:------------|:------------|
| Cargo (Rust 1.67+) | `cargo install --git https://github.com/thibmeu/tlock-rs age-plugin-tlock` |
| Cargo (Rust 1.74+) | `cargo install --git https://github.com/thibmeu/tlock-rs age-plugin-tlock` |

Read [age installation instructions](https://github.com/FiloSottile/age#installation) to install age.

Expand Down
2 changes: 2 additions & 0 deletions tlock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.0.5] - 2024-02-29

### Changed

- Update dependencies
Expand Down
2 changes: 1 addition & 1 deletion tlock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tlock"
description = "Rust encryption library for practical time-lock encryption."
version = "0.0.4"
version = "0.0.5"
authors = ["Thibault Meunier <[email protected]>"]
edition = "2021"
readme = "./README.md"
Expand Down
2 changes: 1 addition & 1 deletion tlock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The reference interroperable Go implementation is available at [drand/tlock](htt

| Environment | CLI Command |
|:-------------------|:--------------------------|
| Cargo (Rust 1.67+) | `cargo install tlock` |
| Cargo (Rust 1.74+) | `cargo install tlock` |

The library is tested against the following targets: `x86_64-unknown-linux-gnu`, `armv7-unknown-linux-gnueabihf`, `aarch64-unknown-linux-gnu`, `wasm32-wasi`.

Expand Down
2 changes: 2 additions & 0 deletions tlock_age/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.0.5] - 2024-02-29

### Changed

- Update dependencies
Expand Down
4 changes: 2 additions & 2 deletions tlock_age/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tlock_age"
description = "Rust encryption library for hybrid time-lock encryption."
version = "0.0.4"
version = "0.0.5"
authors = ["Thibault Meunier <[email protected]>"]
edition = "2021"
readme = "../README.md"
Expand All @@ -17,7 +17,7 @@ age-core = { workspace = true }
anyhow = { workspace = true }
hex = { workspace = true }
thiserror = { workspace = true }
tlock = { path = "../tlock", version = "0.0.4" }
tlock = { path = "../tlock", version = "0.0.5" }

[dev-dependencies]
criterion = { workspace = true, features = ["html_reports"] }
Expand Down

0 comments on commit 19aecb6

Please sign in to comment.