From 15bbde1af70bdb588382fc38a24997575c7b28c9 Mon Sep 17 00:00:00 2001 From: Kyle Huey Date: Wed, 28 Aug 2024 11:04:50 -0700 Subject: [PATCH] Release 0.4.4. --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac9273f..680ccd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,18 @@ Released YYYY/MM/DD -------------------------------------------------------------------------------- +# 0.4.4 + +Released 2024/8/28 + +## Added + +* C++23 extended floating-point types (_FloatN, Float_Nx, and std::bfloat16_t) + and integer types (_BitInt) are supported. + (#295)[https://github.com/gimli-rs/cpp_demangle/pull/295] + +-------------------------------------------------------------------------------- + # 0.4.3 Released 2023/8/18 diff --git a/Cargo.toml b/Cargo.toml index 4c9c338..7b581d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0" name = "cpp_demangle" readme = "./README.md" repository = "https://github.com/gimli-rs/cpp_demangle" -version = "0.4.3" +version = "0.4.4" edition = "2018" [[bin]] diff --git a/README.md b/README.md index a3882e0..549ee33 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Add `cpp_demangle` to your crate's `Cargo.toml`: ```toml [dependencies] -cpp_demangle = "0.4.3" +cpp_demangle = "0.4.4" ``` And then demangle some C++ symbols! @@ -64,7 +64,7 @@ Disable the "std" feature, and enable the "alloc" feature: ```toml [dependencies] cpp_demangle = { - version = "0.4.3", + version = "0.4.4", default-features = false, features = ["alloc"] }