Skip to content

Commit 04954c0

Browse files
committed
Release 0.4.2.
1 parent 751b06b commit 04954c0

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

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

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

31+
# 0.4.2
32+
33+
Released 2023/6/26
34+
35+
## Fixed
36+
37+
* Handling of recursion depth errors has been improved. Exceeding cpp_demangle's
38+
recursion limits will now return immediately, which significantly improves
39+
performance when attempting to demangle these symbols, and removes the possibility
40+
of returning an incorrect demangling if any productions in the symbol might be
41+
ambiguous. (#284)[https://github.com/gimli-rs/cpp_demangle/pull/284]
42+
43+
--------------------------------------------------------------------------------
44+
3145
# 0.4.1
3246

3347
Released 2023/4/13

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.1"
13+
version = "0.4.2"
1414
edition = "2018"
1515

1616
[badges]

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.1"
37+
cpp_demangle = "0.4.2"
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.1",
67+
version = "0.4.2",
6868
default-features = false,
6969
features = ["alloc"]
7070
}

0 commit comments

Comments
 (0)