From 070693322aee7c5c7fbee7c9964bf8d7d3a29c96 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Tue, 12 Mar 2024 23:42:16 +0100 Subject: [PATCH] Publish v0.5.0 --- CHANGELOG.md | 4 +++- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a033a3..18d752b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ # unreleased +# 0.5.0 + - Add `no_std` support. - Remove non-additive `unicode` feature. The library now uses `char::is_alphanumeric` - instead of the `uncode-segmentation` library to determine word boundaries in all cases. + instead of the `unicode-segmentation` library to determine word boundaries in all cases. # 0.4.1 diff --git a/Cargo.toml b/Cargo.toml index e4ca4c9..a9fa2c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heck" -version = "0.5.0-rc.1" +version = "0.5.0" edition = "2021" rust-version = "1.56" license = "MIT OR Apache-2.0"