diff --git a/CHANGES b/CHANGES index a9ac893b8..c81b81e09 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,10 @@ -# Unreleased +# 0.26.0 * Fix swapping of `>>=` and `<<=` in constants. * Add support for #[deprecated] (#860). + * Built-in support for bitflags 2.0. + * Support for "C-unwind" ABI. + * Generate bindings for non-public extern items if they are #[no_mangle]. ## 0.25.0 diff --git a/Cargo.lock b/Cargo.lock index 499d92a09..7e117882c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -27,7 +27,7 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "cbindgen" -version = "0.25.0" +version = "0.26.0" dependencies = [ "clap", "heck", diff --git a/Cargo.toml b/Cargo.toml index 48b1a13b3..ca6ab302e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.25.0" +version = "0.26.0" authors = [ "Emilio Cobos Álvarez ", "Jeff Muizelaar ",