From 6f579bff0d6806e361a4094825fe2659fc22eefa Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Thu, 29 Oct 2020 20:26:28 +0100 Subject: [PATCH] bump version 0.9.0 -> 0.10.0 --- Cargo.toml | 4 ++-- RELEASES.md | 2 +- impl/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2a5f523..e20bee9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "modular-bitfield" -version = "0.9.0" +version = "0.10.0" edition = "2018" authors = ["Robin Freyler "] license = "MIT/Apache-2.0" @@ -43,7 +43,7 @@ harness = false # path = "main.rs" [dependencies] -modular-bitfield-impl = { path = "impl", version = "0.9" } +modular-bitfield-impl = { path = "impl", version = "0.10" } static_assertions = "1.1" [profile.bench] diff --git a/RELEASES.md b/RELEASES.md index 41c2cdc..0b015c1 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,4 +1,4 @@ -# 0.10.0 (WIP) +# 0.10.0 (2020-10-29) - (Thanks @jam1garner): The `#[bitfield]` macro now looks for `#[derive(Debug)]` annotations and if found will implement one that formats the struct with its fields as a user would expect them. Previously having a `#[derive(Debug)]` diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 9979bcd..2870f91 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "modular-bitfield-impl" -version = "0.9.0" +version = "0.10.0" edition = "2018" authors = ["Robin Freyler "] license = "MIT/Apache-2.0" @@ -21,4 +21,4 @@ syn = { version = "1", features = ["full"] } proc-macro2 = "1" [dev-dependencies] -modular-bitfield = { path = "..", version = "0.9" } +modular-bitfield = { path = "..", version = "0.10" }