From 06389bdf69b00e51f5d508c78430ec70349428b4 Mon Sep 17 00:00:00 2001 From: Thibault Date: Wed, 22 Mar 2023 21:49:52 +0100 Subject: [PATCH] Release v0.0.6 Create the first CHANGELOG for v0.0.6 --- Cargo.lock | 38 ++++++-------------------------------- dee/CHANGELOG.md | 17 +++++++++++++++++ dee/Cargo.toml | 6 +++--- drand_core/CHANGELOG.md | 13 +++++++++++++ drand_core/Cargo.toml | 2 +- 5 files changed, 40 insertions(+), 36 deletions(-) create mode 100644 dee/CHANGELOG.md create mode 100644 drand_core/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index db821c1..61b188e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,19 +114,6 @@ dependencies = [ "syn", ] -[[package]] -name = "asynchronous-codec" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06a0daa378f5fd10634e44b0a29b2a87b890657658e072a30d6f26e57ddee182" -dependencies = [ - "bytes", - "futures-sink", - "futures-util", - "memchr", - "pin-project-lite", -] - [[package]] name = "atomic-polyfill" version = "0.1.11" @@ -535,7 +522,7 @@ dependencies = [ [[package]] name = "dee" -version = "0.0.5" +version = "0.0.6" dependencies = [ "anyhow", "chrono", @@ -609,7 +596,7 @@ dependencies = [ [[package]] name = "drand_core" -version = "0.0.5" +version = "0.0.6" dependencies = [ "anyhow", "async-trait", @@ -2194,8 +2181,8 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tlock" -version = "0.1.0" -source = "git+https://github.com/thibmeu/tlock-rs#93b508a4bf975e0540f1a4918492804c1da44b51" +version = "0.0.1" +source = "git+https://github.com/thibmeu/tlock-rs#3ca5fabd8457f7502e314a58c3fc8f7c5c3f29b7" dependencies = [ "anyhow", "bls12_381_plus", @@ -2206,13 +2193,12 @@ dependencies = [ "serde", "sha2 0.9.9", "tracing", - "unsigned-varint", ] [[package]] name = "tlock_age" -version = "0.1.0" -source = "git+https://github.com/thibmeu/tlock-rs#93b508a4bf975e0540f1a4918492804c1da44b51" +version = "0.0.1" +source = "git+https://github.com/thibmeu/tlock-rs#3ca5fabd8457f7502e314a58c3fc8f7c5c3f29b7" dependencies = [ "age", "age-core", @@ -2407,18 +2393,6 @@ dependencies = [ "subtle", ] -[[package]] -name = "unsigned-varint" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d86a8dc7f45e4c1b0d30e43038c38f274e77af056aa5f74b93c2cf9eb3c1c836" -dependencies = [ - "asynchronous-codec", - "bytes", - "futures-io", - "futures-util", -] - [[package]] name = "untrusted" version = "0.7.1" diff --git a/dee/CHANGELOG.md b/dee/CHANGELOG.md new file mode 100644 index 0000000..bd36e06 --- /dev/null +++ b/dee/CHANGELOG.md @@ -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 diff --git a/dee/Cargo.toml b/dee/Cargo.toml index ca25d47..bfc4f1e 100644 --- a/dee/Cargo.toml +++ b/dee/Cargo.toml @@ -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 "] 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] diff --git a/drand_core/CHANGELOG.md b/drand_core/CHANGELOG.md new file mode 100644 index 0000000..53ff9e6 --- /dev/null +++ b/drand_core/CHANGELOG.md @@ -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 diff --git a/drand_core/Cargo.toml b/drand_core/Cargo.toml index b149436..494e9a0 100644 --- a/drand_core/Cargo.toml +++ b/drand_core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "drand_core" description = "A drand client library." -version = "0.0.5" +version = "0.0.6" authors = ["Thibault Meunier "] edition = "2021" readme = "./README.md"