From 24060618bf7fde98931d1c458f68f69125179789 Mon Sep 17 00:00:00 2001 From: panicbit Date: Fri, 12 Jun 2020 20:34:32 +0200 Subject: [PATCH] bump version to 0.5.0 --- CHANGELOG.md | 2 ++ Cargo.toml | 4 ++-- custom_debug_derive/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 665c6c2..5d24e70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,4 +5,6 @@ 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.5.0] - 2020-06-12 - rename CustomDebug to Debug diff --git a/Cargo.toml b/Cargo.toml index a335f2d..504cf9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_debug" -version = "0.4.0" +version = "0.5.0" authors = ["panicbit "] description = "Derive Debug with a custom format per field" license = "Apache-2.0 OR MIT" @@ -9,7 +9,7 @@ readme = "README.md" edition = "2018" [dependencies] -custom_debug_derive = { version = "0.4.0", path = "custom_debug_derive" } +custom_debug_derive = { version = "0.5.0", path = "custom_debug_derive" } [workspace] members = [ diff --git a/custom_debug_derive/Cargo.toml b/custom_debug_derive/Cargo.toml index 7ff3010..b553753 100644 --- a/custom_debug_derive/Cargo.toml +++ b/custom_debug_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_debug_derive" -version = "0.4.0" +version = "0.5.0" authors = ["panicbit "] description = "Derive Debug with a custom format per field" license = "Apache-2.0 OR MIT"