From 82be9fca0f345971b844c8529dc309a808661208 Mon Sep 17 00:00:00 2001 From: Trisfald Date: Sat, 27 Feb 2021 23:02:13 +0000 Subject: [PATCH] prepare release --- CHANGELOG.md | 2 +- Cargo.toml | 4 ++-- choices-derive/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c886bb9..0b3fc7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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). -## [0.3.0] +## [0.3.0] - 2021-02-28 ### Added - Derive attribute to skip configuration fields. - On set callbacks. diff --git a/Cargo.toml b/Cargo.toml index f6d05ff..9e741c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "choices" -version = "0.2.0" +version = "0.3.0" authors = ["Trisfald "] description = "HTTP configuration service by defining a struct." documentation = "https://docs.rs/choices" @@ -21,7 +21,7 @@ default = [] json = ["serde_json", "choices-derive/json"] [dependencies] -choices-derive = { path = "choices-derive", version = "=0.2.0" } +choices-derive = { path = "choices-derive", version = "=0.3.0" } async-trait = "0.1" tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } warp = "0.3" diff --git a/choices-derive/Cargo.toml b/choices-derive/Cargo.toml index 0bc187b..1d05d47 100644 --- a/choices-derive/Cargo.toml +++ b/choices-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "choices-derive" -version = "0.2.0" +version = "0.3.0" authors = ["Trisfald "] description = "HTTP configuration service by defining a struct, derive crate." documentation = "https://docs.rs/choices-derive"