Skip to content

Commit 03f8166

Browse files
committed
Release 0.3.0.
1 parent 32880ba commit 03f8166

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

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

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

31+
# 0.3.0
32+
33+
Released 2020/06/11
34+
35+
## Changed
36+
37+
* The DemangleOptions API has changed to be more future-proof and the
38+
DemangleNodeType enum now has an __NonExhaustive variant to discourage
39+
pattern matching without a `_ => ()` arm.
40+
41+
--------------------------------------------------------------------------------
42+
3143
# 0.2.17
3244

3345
Released 2020/06/09

Cargo.toml

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

1515
[badges]
1616

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.2.17"
37+
cpp_demangle = "0.3.0"
3838
```
3939

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

0 commit comments

Comments
 (0)