diff --git a/CHANGELOG.md b/CHANGELOG.md index d1f464c1..12fea167 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.3.2 + +- Allow `non_snake_case` in generated flags types ([#256]) + +[#252]: https://github.com/bitflags/bitflags/pull/256 + # 1.3.1 - Revert unconditional `#[repr(transparent)]` ([#252]) diff --git a/Cargo.toml b/Cargo.toml index 7a7662e7..be9e05ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "bitflags" # NB: When modifying, also modify: # 1. html_root_url in lib.rs # 2. number in readme (for breaking changes) -version = "1.3.1" +version = "1.3.2" edition = "2018" authors = ["The Rust Project Developers"] license = "MIT/Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 500f543b..935e432f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -276,7 +276,7 @@ //! Users should generally avoid defining a flag with a value of zero. #![cfg_attr(not(test), no_std)] -#![doc(html_root_url = "https://docs.rs/bitflags/1.3.1")] +#![doc(html_root_url = "https://docs.rs/bitflags/1.3.2")] #[doc(hidden)] pub extern crate core as _core;