Skip to content

Commit

Permalink
Release v0.0.7
Browse files Browse the repository at this point in the history
- Add documentation for design considerations

- Update dependencies
- Update time library from chrono to time
- Update dee error handling on HTTP remotes
- Update tlock_age to v0.0.2 for improved performance

- Fix Chain error handling on wrong URL string

- Add coin_clip example for drand_core
- Add `get_by_unix_time` method on drand HttpClient

- Update dependencies
- Update drand_core public API to expose HttpClient
- Update bls12-381 library to arkworks/curves

- Fix Chain error handling on wrong URL string

- Remove Chain struct abstraction
  • Loading branch information
Thibault committed Apr 10, 2023
1 parent 7e840a0 commit 362ef22
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

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

## [Unreleased]

## [0.0.7] - 2023-04-10

### Added

- Add documentation for design considerations

### Changed

- Update dependencies
- Update time library from chrono to time
- Update dee error handling on HTTP remotes
- Update tlock_age to v0.0.2 for improved performance

### Fix

- Fix Chain error handling on wrong URL string

## [0.0.6] - 2023-03-22

### Added
Expand Down
4 changes: 2 additions & 2 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.6"
version = "0.0.7"
authors = ["Thibault Meunier <[email protected]>"]
edition = "2021"
readme = "../README.md"
Expand Down Expand Up @@ -39,7 +39,7 @@ clap = { version = "4.2.1", features = ["derive"] }
clap-verbosity-flag = "2.0.1"
colored = "2.0.0"
confy = "0.5.1"
drand_core = { path = "../drand_core", version = "0.0.6" }
drand_core = { path = "../drand_core", version = "0.0.7" }
env_logger = "0.10.0"
hex = "0.4.3"
log = "0.4.17"
Expand Down
21 changes: 21 additions & 0 deletions drand_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.0.7] - 2023-04-10

### Added

- Add coin_clip example for drand_core
- Add `get_by_unix_time` method on drand HttpClient

### Changed

- Update dependencies
- Update drand_core public API to expose HttpClient
- Update bls12-381 library to arkworks/curves

### Fix

- Fix Chain error handling on wrong URL string

### Remove

- Remove Chain struct abstraction

## [0.0.6] - 2023-03-22

### Changed
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.6"
version = "0.0.7"
authors = ["Thibault Meunier <[email protected]>"]
edition = "2021"
readme = "./README.md"
Expand Down

0 comments on commit 362ef22

Please sign in to comment.