diff --git a/CHANGELOG.md b/CHANGELOG.md index bab70fb..f125b23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,7 +28,18 @@ Released YYYY/MM/DD -------------------------------------------------------------------------------- -# 0.3.2 +# 0.3.4 + +Released 2021/11/21 + +## Added + +* `DemangleOptions` now has a `hide_expression_literal_types` method that + can make it easier to match user-provided template instance names. #230 + +-------------------------------------------------------------------------------- + +# 0.3.3 Released 2021/7/8 diff --git a/Cargo.toml b/Cargo.toml index 8235b81..9025429 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0/MIT" name = "cpp_demangle" readme = "./README.md" repository = "https://github.com/gimli-rs/cpp_demangle" -version = "0.3.3" +version = "0.3.4" [badges] diff --git a/README.md b/README.md index e9b7f1c..d68e5de 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.3.3" +cpp_demangle = "0.3.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.3.3", + version = "0.3.4", default-features = false, features = ["alloc"] }