From 0cd519f2c9fd233801f5d933e6cd5774731b8034 Mon Sep 17 00:00:00 2001 From: Sebastian Detert Date: Wed, 30 Aug 2023 20:23:32 +0200 Subject: [PATCH] chore: version 0.1.2 --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e95c6d9..78380e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "convert_string" -version = "0.1.1" +version = "0.1.2" description = "A trait to convert Strings to safe non-keywords and/or convert a Strings case (snake_case, PascalCase, ...)." authors = ["Sebastian Detert "] edition = "2021" diff --git a/README.md b/README.md index 026e078..de3d13a 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ ```toml [dependencies] - convert_string = "0.1.1" + convert_string = "0.1.2" ``` ## Example @@ -36,7 +36,7 @@ ```toml [dependencies] - convert_string = { version = "0.1.1", default-features = false } + convert_string = { version = "0.1.2", default-features = false } ``` Future Rust editions may add new keywords, and this crate will be updated to reflect