diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a8cbc0..418665d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.28](https://github.com/rust-lang/rustc-demangle/compare/rustc-demangle-v0.1.27...rustc-demangle-v0.1.28) - 2026-07-08 + +### Other + +- Implement splat demangling +- Fix a typo in early-recursion-limit + ## [0.1.27](https://github.com/rust-lang/rustc-demangle/compare/rustc-demangle-v0.1.26...rustc-demangle-v0.1.27) - 2026-01-15 ### Other diff --git a/Cargo.toml b/Cargo.toml index af6fe2a..de2cae7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustc-demangle" -version = "0.1.27" +version = "0.1.28" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/crates/capi/Cargo.toml b/crates/capi/Cargo.toml index bafd741..9d056ca 100644 --- a/crates/capi/Cargo.toml +++ b/crates/capi/Cargo.toml @@ -13,4 +13,4 @@ name = "rustc_demangle" crate-type = ["staticlib", "cdylib"] [dependencies] -rustc-demangle = { version = "0.1.27", path = "../.." } +rustc-demangle = { version = "0.1.28", path = "../.." }