Skip to content

Commit 1e679dd

Browse files
committed
Release 0.4.5.
1 parent 9eea600 commit 1e679dd

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,28 @@ Released YYYY/MM/DD
2828

2929
--------------------------------------------------------------------------------
3030

31+
# 0.4.5
32+
33+
Released 2025/9/23
34+
35+
## Fixed
36+
37+
* ABI tags are now accepted after all variants of qualified names.
38+
(#272)[https://github.com/gimli-rs/cpp_demangle/issues/272]
39+
40+
* Unqualified nested names without prefixes are accepted to match
41+
libiberty and LLVM.
42+
43+
## Added
44+
45+
* Fixed-point types from the N1169 draft of ISO/IEC DTR 18037 (_Accum, _Fract)
46+
are supported. (#298)[https://github.com/gimli-rs/cpp_demangle/pull/298]
47+
48+
* The proposed (and widely implemented) explicitly named object parameters are
49+
supported. (#299)[https://github.com/gimli-rs/cpp_demangle/pull/299]
50+
51+
--------------------------------------------------------------------------------
52+
3153
# 0.4.4
3254

3355
Released 2024/8/28

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
1010
name = "cpp_demangle"
1111
readme = "./README.md"
1212
repository = "https://github.com/gimli-rs/cpp_demangle"
13-
version = "0.4.4"
13+
version = "0.4.5"
1414
edition = "2018"
1515

1616
[[bin]]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Add `cpp_demangle` to your crate's `Cargo.toml`:
3434

3535
```toml
3636
[dependencies]
37-
cpp_demangle = "0.4.4"
37+
cpp_demangle = "0.4.5"
3838
```
3939

4040
And then demangle some C++ symbols!
@@ -64,7 +64,7 @@ Disable the "std" feature, and enable the "alloc" feature:
6464
```toml
6565
[dependencies]
6666
cpp_demangle = {
67-
version = "0.4.4",
67+
version = "0.4.5",
6868
default-features = false,
6969
features = ["alloc"]
7070
}

0 commit comments

Comments
 (0)