From e1f4046c728497959d6212fe6a772ac2aede4a13 Mon Sep 17 00:00:00 2001 From: Zibi Braniecki Date: Fri, 23 Aug 2019 09:46:52 -0700 Subject: [PATCH] tinystr 0.3.0 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 048b022..ae9f88e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ - … +## tinystr 0.3.0 (August 23, 2019) + + - Separate out `is_ascii_numeric`, `is_ascii_alphanumeric` and `is_ascii_alphabetic`. + ## tinystr 0.2.0 (August 16, 2019) - Add TinyStr16 diff --git a/Cargo.toml b/Cargo.toml index f143a24..8ac94d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "tinystr" description = """ A small ASCII-only bounded length string representation. """ -version = "0.2.0" +version = "0.3.0" authors = ["Raph Levien ", "Zibi Braniecki "] edition = "2018" license = "Apache-2.0/MIT"