Skip to content

Commit

Permalink
Release 0.3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
khuey committed Nov 21, 2021
1 parent a4ff4cb commit b2965ef
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down Expand Up @@ -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"]
}
Expand Down

0 comments on commit b2965ef

Please sign in to comment.