Skip to content

Commit

Permalink
0.11.2 release (#420)
Browse files Browse the repository at this point in the history
* Bump version number

* Add release notes

* Ignore broken tests
  • Loading branch information
alice-i-cecile authored Dec 2, 2023
1 parent efcc6ba commit 1617f40
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "leafwing-input-manager"
description = "A powerfully direct stateful input manager for the Bevy game engine."
version = "0.11.1"
version = "0.11.2"
authors = ["Leafwing Studios"]
homepage = "https://leafwing-studios.com/"
repository = "https://github.com/leafwing-studios/leafwing-input-manager"
Expand Down
8 changes: 8 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# Release Notes

## Version 0.11.2

- fixed [a bug](https://github.com/Leafwing-Studios/leafwing-input-manager/issues/285) with mouse motion and mouse wheel events being improperly counted
- this was pre-existing, but dramatically worsened by the release of Bevy 0.12.1

## Version 0.11.1

- `bevy_egui` integration and the `egui` feature flag have been added back with the release of `bevy_egui` 0.23.

### Bugs

- A disabled `ToggleActions` of one `Action` now does not release other `Action`'s inputs.

## Version 0.11.1

- `bevy_egui` integration and the `egui` feature flag have been added back with the release of `bevy_egui` 0.23.

## Version 0.11
Expand Down
2 changes: 2 additions & 0 deletions tests/gamepad_axis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ fn raw_gamepad_axis_events() {
}

#[test]
#[ignore = "Broken upstream; tracked in https://github.com/Leafwing-Studios/leafwing-input-manager/issues/419"]
fn game_pad_single_axis_mocking() {
let mut app = test_app();
let mut events = app.world.resource_mut::<Events<GamepadEvent>>();
Expand All @@ -89,6 +90,7 @@ fn game_pad_single_axis_mocking() {
}

#[test]
#[ignore = "Broken upstream; tracked in https://github.com/Leafwing-Studios/leafwing-input-manager/issues/419"]
fn game_pad_dual_axis_mocking() {
let mut app = test_app();
let mut events = app.world.resource_mut::<Events<GamepadEvent>>();
Expand Down

0 comments on commit 1617f40

Please sign in to comment.