From 5781ba7541722697b3fa40823b8d13b43085dcb4 Mon Sep 17 00:00:00 2001 From: Zibi Braniecki Date: Thu, 18 Feb 2021 11:26:39 -0800 Subject: [PATCH] tinystr 0.4.3 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 11 ++++++++--- raw/Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 856d699..0b306eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ - … +## tinystr 0.4.3 (February 18, 2021) + + - Implement `Error` for errors. + - Implement `serde` support. + +## tinystr 0.4.2 (January 14, 2021) + + - Add `repr(transparent)`. + ## tinystr 0.4.1 (October 13, 2020) - Improve macro re-export. diff --git a/Cargo.toml b/Cargo.toml index f10ed11..b7278ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,8 +3,13 @@ name = "tinystr" description = """ A small ASCII-only bounded length string representation. """ -version = "0.4.2" -authors = ["Raph Levien ", "Zibi Braniecki ", "Shane F. Carr "] +version = "0.4.3" +authors = [ + "Raph Levien ", + "Zibi Braniecki ", + "Shane F. Carr ", + "Manish Goregaokar " +] edition = "2018" license = "Apache-2.0/MIT" repository = "https://github.com/zbraniecki/tinystr" @@ -15,7 +20,7 @@ categories = ["data-structures"] [dependencies] serde = { version = "1.0.123", optional = true } tinystr-macros = { version = "0.2", path = "./macros" } -tinystr-raw = { version = "0.1", path = "./raw" } +tinystr-raw = { version = "0.1.1", path = "./raw" } [dev-dependencies] criterion = "0.3" diff --git a/raw/Cargo.toml b/raw/Cargo.toml index fa6fad8..47f7607 100644 --- a/raw/Cargo.toml +++ b/raw/Cargo.toml @@ -3,7 +3,7 @@ name = "tinystr-raw" description = """ Raw string-to-integer conversions for tinystr. """ -version = "0.1.0" +version = "0.1.1" authors = ["Zibi Braniecki ", "Shane F. Carr "] edition = "2018" license = "Apache-2.0/MIT"