Skip to content

Commit

Permalink
Release v0.0.6
Browse files Browse the repository at this point in the history
Create the first CHANGELOG for v0.0.6
  • Loading branch information
Thibault committed Mar 22, 2023
1 parent 4ba5422 commit 06389bd
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 36 deletions.
38 changes: 6 additions & 32 deletions Cargo.lock

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

17 changes: 17 additions & 0 deletions dee/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

All notable changes to this project will be documented in this file. Changes to the [drand_core crate](../drand_core/CHANGELOG.md) also apply to the dee CLI tools, and are not duplicated here.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.0.6] - 2023-03-22

### Added

- Decryption from stdin
- Compatibility with [drand/tlock](https://github.com/drand/tlock) and [drand/tlock-js](https://github.com/drand/tlock)

### Changed
- README to detail current and planned features, as well as references
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.5"
version = "0.0.6"
authors = ["Thibault Meunier <[email protected]>"]
edition = "2021"
readme = "../README.md"
Expand Down Expand Up @@ -40,13 +40,13 @@ clap = { version = "4.1.8", features = ["derive"] }
clap-verbosity-flag = "2.0.0"
colored = "2.0.0"
confy = "0.5.1"
drand_core = { path = "../drand_core" }
drand_core = { path = "../drand_core", version = "0.0.6" }
env_logger = "0.10.0"
hex = "0.4.3"
log = "0.4.17"
serde = { version = "1.0.155", features = ["derive"] }
serde_json = "1.0.94"
tlock_age = { git = "https://github.com/thibmeu/tlock-rs", version = "0.1.0", features = ["armor"] }
tlock_age = { git = "https://github.com/thibmeu/tlock-rs", version = "0.0.1", features = ["armor"] }
tokio = { version = "1.26.0", features = ["full"] }

[build-dependencies]
Expand Down
13 changes: 13 additions & 0 deletions drand_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.0.6] - 2023-03-22

### Changed

- README to detail current and planned features
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.5"
version = "0.0.6"
authors = ["Thibault Meunier <[email protected]>"]
edition = "2021"
readme = "./README.md"
Expand Down

0 comments on commit 06389bd

Please sign in to comment.