Skip to content

Commit

Permalink
Merge pull request #258 from KodrAus/cargo/1.3.2
Browse files Browse the repository at this point in the history
Prepare for 1.3.2 release
  • Loading branch information
KodrAus committed Aug 16, 2021
2 parents ac957a5 + 54e47f7 commit ed185cf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions 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])
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -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;
Expand Down

0 comments on commit ed185cf

Please sign in to comment.