Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.0.15 #16

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 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 dee/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.15] - 2024-02-29

### Changed

- Update dependencies
Expand Down
6 changes: 3 additions & 3 deletions dee/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dee"
description = "An cli for drand, with support for timelock encryption."
version = "0.0.14"
version = "0.0.15"
authors = ["Thibault Meunier <crates@thibault.uk>"]
edition = "2021"
readme = "../README.md"
Expand Down Expand Up @@ -39,14 +39,14 @@ clap = { version = "4.5.1", features = ["derive"] }
clap-verbosity-flag = "2.2.0"
colored = "2.1.0"
confy = "0.5.1"
drand_core = { path = "../drand_core", version = "0.0.14" }
drand_core = { path = "../drand_core", version = "0.0.15" }
env_logger = "0.10.2"
hex = { workspace = true }
log = "0.4.21"
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
time = { workspace = true, features = ["parsing", "serde-well-known"] }
tlock_age = { features = ["armor"], version = "0.0.4" }
tlock_age = { features = ["armor"], version = "0.0.5" }
tlock_age_non_rfc9380 = { package="tlock_age", version = "0.0.3", features = ["armor"] }

[build-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions drand_core/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.15] - 2024-02-29

### Added

- Add a check on the returned round value
Expand Down
2 changes: 1 addition & 1 deletion drand_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "drand_core"
description = "A drand client library."
version = "0.0.14"
version = "0.0.15"
authors = ["Thibault Meunier <crates@thibault.uk>"]
edition = "2021"
readme = "./README.md"
Expand Down
Loading