From a976056ef61e6fcf0162ae81ba57fb92c8dfb599 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Wed, 15 Jan 2025 10:57:52 +0100 Subject: [PATCH] Release 0.28.0 --- CHANGES | 14 ++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 153bb2e0a..93fef52d7 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,19 @@ # unreleased +# 0.28.0 + + * Parse unsafe attributes in https://github.com/mozilla/cbindgen/pull/1020 + * Fix local override of enum prefix-with-name by jsgf in https://github.com/mozilla/cbindgen/pull/1006 + * Add rename-all=prefix in https://github.com/mozilla/cbindgen/pull/1021 + * ir: add support for UnsafeCell and SyncUnsafeCell by alekitto in https://github.com/mozilla/cbindgen/pull/1003 + * Implement mangling for arrays in https://github.com/mozilla/cbindgen/pull/1022 + * Fix: Ignore `CARGO_BUILD_TARGET` in tests by bryango in https://github.com/mozilla/cbindgen/pull/1010 + * Newline for each field for constexpr field constants by youknowone in https://github.com/mozilla/cbindgen/pull/988 + * Fix clippy warnings by youknowone in https://github.com/mozilla/cbindgen/pull/1026 + * Add aarch64/arm64 to CI by NickeZ in https://github.com/mozilla/cbindgen/pull/1036 + * Add `unstable_ir` feature flag that makes the ir pub by heesooy in https://github.com/mozilla/cbindgen/pull/1011 + * Support generated a symbols file by TheElectronWill in https://github.com/mozilla/cbindgen/pull/916 + # 0.27.0 * Revert: The `Config` struct now has a private member. diff --git a/Cargo.lock b/Cargo.lock index 8e3f75786..43efb9cb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -65,7 +65,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "cbindgen" -version = "0.27.0" +version = "0.28.0" dependencies = [ "clap", "heck", diff --git a/Cargo.toml b/Cargo.toml index 01a484529..a0278d09a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.27.0" +version = "0.28.0" authors = [ "Emilio Cobos Álvarez ", "Jeff Muizelaar ",