Skip to content

Commit b93a154

Browse files
authored
chore(release): Release v0.1.4 (#47)
1 parent 8c27112 commit b93a154

File tree

16 files changed

+88
-19
lines changed

16 files changed

+88
-19
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,47 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2024-10-22
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`gamepads` - `v0.1.4`](#gamepads---v014)
19+
- [`gamepads_platform_interface` - `v0.1.2+1`](#gamepads_platform_interface---v0121)
20+
- [`gamepads_linux` - `v0.1.1+3`](#gamepads_linux---v0113)
21+
- [`gamepads_windows` - `v0.1.1+3`](#gamepads_windows---v0113)
22+
- [`gamepads_darwin` - `v0.1.2+2`](#gamepads_darwin---v0122)
23+
- [`gamepads_ios` - `v0.1.2+2`](#gamepads_ios---v0122)
24+
- [`gamepads_android` - `v0.1.2+2`](#gamepads_android---v0122)
25+
26+
Packages with dependency updates only:
27+
28+
> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
29+
30+
- `gamepads_linux` - `v0.1.1+3`
31+
- `gamepads_windows` - `v0.1.1+3`
32+
- `gamepads_darwin` - `v0.1.2+2`
33+
- `gamepads_ios` - `v0.1.2+2`
34+
- `gamepads_android` - `v0.1.2+2`
35+
36+
---
37+
38+
#### `gamepads` - `v0.1.4`
39+
40+
- fix: Take other values than 1 into consideration for pressed buttons
41+
42+
#### `gamepads_platform_interface` - `v0.1.2+1`
43+
44+
- **FIX**: Take other values than 1 into consideration for pressed buttons ([#46](https://github.com/flame-engine/gamepads/issues/46)). ([8c27112d](https://github.com/flame-engine/gamepads/commit/8c27112ddf1f2d0ea8e07bdcdd13c84546a72836))
45+
46+
647
## 2024-10-21
748

849
### Changes

packages/gamepads/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.4
2+
3+
- fix: Take other values than 1 into consideration for pressed buttons
4+
15
## 0.1.3
26

37
- **FEAT**: Added GamepadState that can be updated ([#43](https://github.com/flame-engine/gamepads/issues/43)). ([0c9890e8](https://github.com/flame-engine/gamepads/commit/0c9890e80c423621c52226521612e307d8419308))

packages/gamepads/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
gamepads: ^0.1.3
13+
gamepads: ^0.1.4
1414

1515
dev_dependencies:
1616
flame_lint: ^0.2.0

packages/gamepads/pubspec.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: gamepads
22
description: A Flutter plugin to handle gamepad input across multiple platforms.
3-
version: 0.1.3
3+
version: 0.1.4
44
homepage: https://github.com/flame-engine/gamepads
55
repository: https://github.com/flame-engine/gamepads/tree/main/packages/gamepads
66

@@ -25,12 +25,12 @@ environment:
2525
dependencies:
2626
flutter:
2727
sdk: flutter
28-
gamepads_android: ^0.1.2+1
29-
gamepads_darwin: ^0.1.2+1
30-
gamepads_ios: ^0.1.2+1
31-
gamepads_linux: ^0.1.1+2
32-
gamepads_platform_interface: ^0.1.2
33-
gamepads_windows: ^0.1.1+2
28+
gamepads_android: ^0.1.2+2
29+
gamepads_darwin: ^0.1.2+2
30+
gamepads_ios: ^0.1.2+2
31+
gamepads_linux: ^0.1.1+3
32+
gamepads_platform_interface: ^0.1.2+1
33+
gamepads_windows: ^0.1.1+3
3434

3535
dev_dependencies:
3636
flame_lint: ^0.2.0

packages/gamepads_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.2+2
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.1.2+1
26

37
- Update a dependency to the latest release.

packages/gamepads_android/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: gamepads_android
22
description: Android implementation of gamepads, a Flutter plugin to handle gamepad input across multiple platforms.
3-
version: 0.1.2+1
3+
version: 0.1.2+2
44
homepage: https://github.com/flame-engine/gamepads
55
repository: https://github.com/flame-engine/gamepads/tree/main/packages/gamepads_android
66

@@ -18,7 +18,7 @@ environment:
1818
dependencies:
1919
flutter:
2020
sdk: flutter
21-
gamepads_platform_interface: ^0.1.2
21+
gamepads_platform_interface: ^0.1.2+1
2222

2323
dev_dependencies:
2424
flame_lint: ^0.2.0

packages/gamepads_darwin/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.2+2
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.1.2+1
26

37
- Update a dependency to the latest release.

packages/gamepads_darwin/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: gamepads_darwin
22
description: MacOS implementation of gamepads, a Flutter plugin to handle gamepad input across multiple platforms.
3-
version: 0.1.2+1
3+
version: 0.1.2+2
44
homepage: https://github.com/flame-engine/gamepads
55
repository: https://github.com/flame-engine/gamepads/tree/main/packages/gamepads_darwin
66

@@ -18,7 +18,7 @@ environment:
1818
dependencies:
1919
flutter:
2020
sdk: flutter
21-
gamepads_platform_interface: ^0.1.2
21+
gamepads_platform_interface: ^0.1.2+1
2222

2323
dev_dependencies:
2424
flame_lint: ^0.2.0

packages/gamepads_ios/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.2+2
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.1.2+1
26

37
- Update a dependency to the latest release.

packages/gamepads_ios/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: gamepads_ios
22
description: iOS implementation of gamepads, a Flutter plugin to handle gamepad input across multiple platforms.
3-
version: 0.1.2+1
3+
version: 0.1.2+2
44
homepage: https://github.com/flame-engine/gamepads
55
repository: https://github.com/flame-engine/gamepads/tree/main/packages/gamepads_ios
66

@@ -18,7 +18,7 @@ environment:
1818
dependencies:
1919
flutter:
2020
sdk: flutter
21-
gamepads_platform_interface: ^0.1.2
21+
gamepads_platform_interface: ^0.1.2+1
2222

2323

2424
dev_dependencies:

0 commit comments

Comments
 (0)