diff --git a/CHANGES b/CHANGES index 153bb2e0..93fef52d 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 8e3f7578..43efb9cb 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 01a48452..a0278d09 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 ",