prepare for 1.3.2 release

This commit is contained in:
KodrAus 2021-08-16 14:12:11 +10:00
parent ac957a5876
commit 54e47f7f4a
3 changed files with 8 additions and 2 deletions

View File

@ -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])

View File

@ -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"

View File

@ -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;