-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create the first CHANGELOG for v0.0.6
- Loading branch information
Thibault
committed
Mar 22, 2023
1 parent
4ba5422
commit 06389bd
Showing
5 changed files
with
40 additions
and
36 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|