Skip to content

Commit

Permalink
Release 0.4.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
khuey committed Aug 28, 2024
1 parent d44a19b commit 15bbde1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@ Released YYYY/MM/DD

--------------------------------------------------------------------------------

# 0.4.4

Released 2024/8/28

## Added

* C++23 extended floating-point types (_FloatN, Float_Nx, and std::bfloat16_t)
and integer types (_BitInt) are supported.
(#295)[https://github.com/gimli-rs/cpp_demangle/pull/295]

--------------------------------------------------------------------------------

# 0.4.3

Released 2023/8/18
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 = "MIT OR Apache-2.0"
name = "cpp_demangle"
readme = "./README.md"
repository = "https://github.com/gimli-rs/cpp_demangle"
version = "0.4.3"
version = "0.4.4"
edition = "2018"

[[bin]]
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.4.3"
cpp_demangle = "0.4.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.4.3",
version = "0.4.4",
default-features = false,
features = ["alloc"]
}
Expand Down

0 comments on commit 15bbde1

Please sign in to comment.