Skip to content

Commit

Permalink
Release v0.0.14
Browse files Browse the repository at this point in the history
Focused on improving error messages. drand_core gets its own error type.
dee distinguishes between invalid beacons, network error, or invalid
upstream.
  • Loading branch information
thibmeu committed Aug 30, 2023
1 parent bf899e7 commit e58b75a
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 24 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Retrieve public randomness, and encrypt your files to the future. **dee** provid

| Environment | CLI Command |
|:------------|:------------|
| Cargo (Rust 1.67+) | `cargo install dee --git https://github.com/thibmeu/drand-rs` |
| Cargo (Rust 1.70+) | `cargo install dee --git https://github.com/thibmeu/drand-rs` |

On Linux, Windows, or macOS, you can use the [pre-built binaries](https://github.com/thibmeu/drand-rs/releases).

Expand Down
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.14] - 2023-08-30

### Add

- Improved error messages on network failure
Expand Down
12 changes: 6 additions & 6 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.13"
version = "0.0.14"
authors = ["Thibault Meunier <crates@thibault.uk>"]
edition = "2021"
readme = "../README.md"
Expand Down Expand Up @@ -35,22 +35,22 @@ maintenance = { status = "experimental" }

[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.0", features = ["derive"] }
clap = { version = "4.4.1", features = ["derive"] }
clap-verbosity-flag = "2.0.1"
colored = "2.0.4"
confy = "0.5.1"
drand_core = { path = "../drand_core", version = "0.0.13" }
drand_core = { path = "../drand_core", version = "0.0.14" }
env_logger = "0.10.0"
hex = "0.4.3"
log = "0.4.20"
serde = { version = "1.0.187", features = ["derive"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.105"
time = { version = "0.3.27", features = ["parsing", "serde-well-known"] }
time = { version = "0.3.28", features = ["parsing", "serde-well-known"] }
tlock_age = { features = ["armor"], version = "0.0.4" }
tlock_age_non_rfc9380 = { package="tlock_age", version = "0.0.3", features = ["armor"] }

[build-dependencies]
clap = "4.4.0"
clap = "4.4.1"
clap-verbosity-flag = "2.0.1"
clap_complete = "4.4.0"
clap_mangen = "0.2.13"
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.14] - 2023-08-30

### Added

- Dedicated error type
Expand Down
6 changes: 3 additions & 3 deletions 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.13"
version = "0.0.14"
authors = ["Thibault Meunier <crates@thibault.uk>"]
edition = "2021"
readme = "./README.md"
Expand All @@ -18,11 +18,11 @@ ark-ff = "0.4.2"
ark-serialize = "0.4.2"
hex = { version = "0.4.3", features = ["serde"] }
rand = "0.8.5"
serde = { version = "1.0.187", features = ["derive", "rc"] }
serde = { version = "1.0.188", features = ["derive", "rc"] }
serde_json = "1.0.105"
sha2 = "0.10.7"
thiserror = "1.0.47"
time = { version = "0.3.27", features = ["parsing", "serde-well-known"], optional = true }
time = { version = "0.3.28", features = ["parsing", "serde-well-known"], optional = true }
ureq = { version = "2.7.1", features = ["json"] }
url = { version = "2.4", features = ["serde"] }

Expand Down

0 comments on commit e58b75a

Please sign in to comment.