Merge pull request #88 from rust-lang/release-plz-2026-01-15T15-09-27Z
chore(rustc-demangle): release v0.1.27
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c42fed5..0a8cbc0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,12 @@
## [Unreleased]
+## [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
+
+- Support v0 demangling of trait object types with assoc const bindings
+
## [0.1.26](https://github.com/rust-lang/rustc-demangle/compare/rustc-demangle-v0.1.25...rustc-demangle-v0.1.26) - 2025-07-16
### Other
diff --git a/Cargo.toml b/Cargo.toml
index 4195a6a..af6fe2a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustc-demangle"
-version = "0.1.26"
+version = "0.1.27"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
diff --git a/crates/capi/Cargo.toml b/crates/capi/Cargo.toml
index 4ec64d3..bafd741 100644
--- a/crates/capi/Cargo.toml
+++ b/crates/capi/Cargo.toml
@@ -13,4 +13,4 @@
crate-type = ["staticlib", "cdylib"]
[dependencies]
-rustc-demangle = { version = "0.1.26", path = "../.." }
+rustc-demangle = { version = "0.1.27", path = "../.." }