From 2eaba2ed59bba98a3104f99d100c8f744a847d6c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Jun 2025 16:32:04 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- crates/capi/CHANGELOG.md | 14 ++++++++++++++ crates/capi/Cargo.toml | 4 ++-- 4 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md create mode 100644 crates/capi/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..809f851 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.26](https://github.com/rust-lang/rustc-demangle/compare/rustc-demangle-v0.1.25...rustc-demangle-v0.1.26) - 2025-06-12 + +### Other + +- Do not publish the `native-c` crate +- Use release-plz for releases +- Add a CI workflow to publish new releases after a tag is pushed diff --git a/Cargo.toml b/Cargo.toml index 968972d..4195a6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustc-demangle" -version = "0.1.25" +version = "0.1.26" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/crates/capi/CHANGELOG.md b/crates/capi/CHANGELOG.md new file mode 100644 index 0000000..206bc52 --- /dev/null +++ b/crates/capi/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.2](https://github.com/rust-lang/rustc-demangle/compare/rustc-demangle-capi-v0.1.1...rustc-demangle-capi-v0.1.2) - 2025-06-12 + +### Other + +- updated the following local packages: rustc-demangle diff --git a/crates/capi/Cargo.toml b/crates/capi/Cargo.toml index d6f3d9e..4ec64d3 100644 --- a/crates/capi/Cargo.toml +++ b/crates/capi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustc-demangle-capi" -version = "0.1.1" +version = "0.1.2" authors = ["Torste Aikio "] description = """ C API for the `rustc-demangle` crate @@ -13,4 +13,4 @@ name = "rustc_demangle" crate-type = ["staticlib", "cdylib"] [dependencies] -rustc-demangle = { version = "0.1.16", path = "../.." } +rustc-demangle = { version = "0.1.26", path = "../.." }