Skip to content

Commit

Permalink
Merge pull request #401 from KodrAus/cargo/2.5.0
Browse files Browse the repository at this point in the history
Prepare for 2.5.0 release
  • Loading branch information
KodrAus committed Mar 19, 2024
2 parents 6965e84 + 4b51e1d commit e5ff0ca
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,14 @@
# 2.5.0

## What's Changed
* Derive `Debug` for `Flag<B>` by @tgross35 in https://github.com/bitflags/bitflags/pull/398
* Support truncating or strict-named variants of parsing and formatting by @KodrAus in https://github.com/bitflags/bitflags/pull/400

## New Contributors
* @tgross35 made their first contribution in https://github.com/bitflags/bitflags/pull/398

**Full Changelog**: https://github.com/bitflags/bitflags/compare/2.4.2...2.5.0

# 2.4.2

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "bitflags"
# NB: When modifying, also modify the number in readme (for breaking changes)
version = "2.4.2"
version = "2.5.0"
edition = "2021"
rust-version = "1.56.0"
authors = ["The Rust Project Developers"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -28,7 +28,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
bitflags = "2.4.2"
bitflags = "2.5.0"
```

and this to your source code:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -17,7 +17,7 @@ Add `bitflags` to your `Cargo.toml`:
```toml
[dependencies.bitflags]
version = "2.4.2"
version = "2.5.0"
```
## Generating flags types
Expand Down

0 comments on commit e5ff0ca

Please sign in to comment.