Skip to content

Commit af8d62a

Browse files
committed
Release 0.3.6.
1 parent dd8daf5 commit af8d62a

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,33 @@ Released YYYY/MM/DD
2828

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

31+
# 0.3.6
32+
33+
Released 2022/10/20
34+
35+
## Added
36+
37+
* The non-deprecated versions of noexcept are supported. #273
38+
39+
* Most of the subobject production that clang uses is supported. #273
40+
41+
## Changed
42+
43+
* Rust 2018 is now used. #251
44+
45+
* cppfilt now uses clap 4.0. #271
46+
47+
## Fixed
48+
49+
* no_std works. #251
50+
51+
* Inheriting constructors no longer produce substitutable values. #272
52+
53+
--------------------------------------------------------------------------------
54+
3155
# 0.3.5
3256

33-
Released 2021/12/2
57+
Released 2021/12/02
3458

3559
## Changed
3660

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

0 commit comments

Comments
 (0)