Skip to content

Commit

Permalink
chore(release): Release v0.1.3 (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
spydon authored Oct 21, 2024
1 parent 0c9890e commit 6fc8f5f
Show file tree
Hide file tree
Showing 16 changed files with 88 additions and 19 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,47 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2024-10-21

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`gamepads` - `v0.1.3`](#gamepads---v013)
- [`gamepads_platform_interface` - `v0.1.2`](#gamepads_platform_interface---v012)
- [`gamepads_linux` - `v0.1.1+2`](#gamepads_linux---v0112)
- [`gamepads_windows` - `v0.1.1+2`](#gamepads_windows---v0112)
- [`gamepads_darwin` - `v0.1.2+1`](#gamepads_darwin---v0121)
- [`gamepads_ios` - `v0.1.2+1`](#gamepads_ios---v0121)
- [`gamepads_android` - `v0.1.2+1`](#gamepads_android---v0121)

Packages with dependency updates only:

> 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.
- `gamepads_linux` - `v0.1.1+2`
- `gamepads_windows` - `v0.1.1+2`
- `gamepads_darwin` - `v0.1.2+1`
- `gamepads_ios` - `v0.1.2+1`
- `gamepads_android` - `v0.1.2+1`

---

#### `gamepads` - `v0.1.3`

- **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))

#### `gamepads_platform_interface` - `v0.1.2`

- **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))


## 2024-07-13

### Changes
Expand Down
4 changes: 4 additions & 0 deletions packages/gamepads/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.3

- **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))

## 0.1.2

- **REFACTOR**: Lint Kotlin, C and C++ code ([#6](https://github.com/flame-engine/gamepads/issues/6)). ([6d3e9334](https://github.com/flame-engine/gamepads/commit/6d3e9334072d24525ed7ccf9f8c7fa481c8373fc))
Expand Down
2 changes: 1 addition & 1 deletion packages/gamepads/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ environment:
dependencies:
flutter:
sdk: flutter
gamepads: ^0.1.2
gamepads: ^0.1.3

dev_dependencies:
flame_lint: ^0.2.0
Expand Down
14 changes: 7 additions & 7 deletions packages/gamepads/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: gamepads
description: A Flutter plugin to handle gamepad input across multiple platforms.
version: 0.1.2
version: 0.1.3
homepage: https://github.com/flame-engine/gamepads
repository: https://github.com/flame-engine/gamepads/tree/main/packages/gamepads

Expand All @@ -25,12 +25,12 @@ environment:
dependencies:
flutter:
sdk: flutter
gamepads_android: ^0.1.2
gamepads_darwin: ^0.1.2
gamepads_ios: ^0.1.2
gamepads_linux: ^0.1.1+1
gamepads_platform_interface: ^0.1.1
gamepads_windows: ^0.1.1+1
gamepads_android: ^0.1.2+1
gamepads_darwin: ^0.1.2+1
gamepads_ios: ^0.1.2+1
gamepads_linux: ^0.1.1+2
gamepads_platform_interface: ^0.1.2
gamepads_windows: ^0.1.1+2

dev_dependencies:
flame_lint: ^0.2.0
Expand Down
4 changes: 4 additions & 0 deletions packages/gamepads_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.2+1

- Update a dependency to the latest release.

## 0.1.2

- **FEAT**: Support for Android ([#35](https://github.com/flame-engine/gamepads/issues/35)). ([6996109e](https://github.com/flame-engine/gamepads/commit/6996109e4452406990191af1b1f10d18461c3bfc))
Expand Down
4 changes: 2 additions & 2 deletions packages/gamepads_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: gamepads_android
description: Android implementation of gamepads, a Flutter plugin to handle gamepad input across multiple platforms.
version: 0.1.2
version: 0.1.2+1
homepage: https://github.com/flame-engine/gamepads
repository: https://github.com/flame-engine/gamepads/tree/main/packages/gamepads_android

Expand All @@ -18,7 +18,7 @@ environment:
dependencies:
flutter:
sdk: flutter
gamepads_platform_interface: ^0.1.1
gamepads_platform_interface: ^0.1.2

dev_dependencies:
flame_lint: ^0.2.0
Expand Down
4 changes: 4 additions & 0 deletions packages/gamepads_darwin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.2+1

- Update a dependency to the latest release.

## 0.1.2

- **FIX**: Remove extendedGamepad from gamepads array on disconnect ([#39](https://github.com/flame-engine/gamepads/issues/39)). ([b24257d3](https://github.com/flame-engine/gamepads/commit/b24257d3e467385351bf5ba14780eacfa318cd0d))
Expand Down
4 changes: 2 additions & 2 deletions packages/gamepads_darwin/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: gamepads_darwin
description: MacOS implementation of gamepads, a Flutter plugin to handle gamepad input across multiple platforms.
version: 0.1.2
version: 0.1.2+1
homepage: https://github.com/flame-engine/gamepads
repository: https://github.com/flame-engine/gamepads/tree/main/packages/gamepads_darwin

Expand All @@ -18,7 +18,7 @@ environment:
dependencies:
flutter:
sdk: flutter
gamepads_platform_interface: ^0.1.1
gamepads_platform_interface: ^0.1.2

dev_dependencies:
flame_lint: ^0.2.0
Expand Down
4 changes: 4 additions & 0 deletions packages/gamepads_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.2+1

- Update a dependency to the latest release.

## 0.1.2

- **FIX**: Remove extendedGamepad from gamepads array on disconnect ([#39](https://github.com/flame-engine/gamepads/issues/39)). ([b24257d3](https://github.com/flame-engine/gamepads/commit/b24257d3e467385351bf5ba14780eacfa318cd0d))
Expand Down
4 changes: 2 additions & 2 deletions packages/gamepads_ios/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: gamepads_ios
description: iOS implementation of gamepads, a Flutter plugin to handle gamepad input across multiple platforms.
version: 0.1.2
version: 0.1.2+1
homepage: https://github.com/flame-engine/gamepads
repository: https://github.com/flame-engine/gamepads/tree/main/packages/gamepads_ios

Expand All @@ -18,7 +18,7 @@ environment:
dependencies:
flutter:
sdk: flutter
gamepads_platform_interface: ^0.1.1
gamepads_platform_interface: ^0.1.2


dev_dependencies:
Expand Down
4 changes: 4 additions & 0 deletions packages/gamepads_linux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.1+2

- Update a dependency to the latest release.

## 0.1.1+1

- **REFACTOR**: Lint Kotlin, C and C++ code ([#6](https://github.com/flame-engine/gamepads/issues/6)). ([6d3e9334](https://github.com/flame-engine/gamepads/commit/6d3e9334072d24525ed7ccf9f8c7fa481c8373fc))
Expand Down
4 changes: 2 additions & 2 deletions packages/gamepads_linux/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: gamepads_linux
description: Linux implementation of gamepads, a Flutter plugin to handle gamepad input across multiple platforms.
version: 0.1.1+1
version: 0.1.1+2
homepage: https://github.com/flame-engine/gamepads
repository: https://github.com/flame-engine/gamepads/tree/main/packages/gamepads_linux

Expand All @@ -18,7 +18,7 @@ environment:
dependencies:
flutter:
sdk: flutter
gamepads_platform_interface: ^0.1.1
gamepads_platform_interface: ^0.1.2

dev_dependencies:
flame_lint: ^0.2.0
Expand Down
4 changes: 4 additions & 0 deletions packages/gamepads_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.2

- **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))

## 0.1.1

- Bump "gamepads_platform_interface" to `0.1.1`.
Expand Down
2 changes: 1 addition & 1 deletion packages/gamepads_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: gamepads_platform_interface
description: The platform interface for gamepads, a Flutter plugin to handle gamepad input across multiple platforms.
version: 0.1.1
version: 0.1.2
homepage: https://github.com/flame-engine/gamepads
repository: https://github.com/flame-engine/gamepads/tree/main/packages/gamepads_platform_interface

Expand Down
4 changes: 4 additions & 0 deletions packages/gamepads_windows/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.1+2

- Update a dependency to the latest release.

## 0.1.1+1

- **REFACTOR**: Lint Kotlin, C and C++ code ([#6](https://github.com/flame-engine/gamepads/issues/6)). ([6d3e9334](https://github.com/flame-engine/gamepads/commit/6d3e9334072d24525ed7ccf9f8c7fa481c8373fc))
Expand Down
4 changes: 2 additions & 2 deletions packages/gamepads_windows/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: gamepads_windows
description: Windows implementation of gamepads, a Flutter plugin to handle gamepad input across multiple platforms.
version: 0.1.1+1
version: 0.1.1+2
homepage: https://github.com/flame-engine/gamepads
repository: https://github.com/flame-engine/gamepads/tree/main/packages/gamepads_windows

Expand All @@ -18,7 +18,7 @@ environment:
dependencies:
flutter:
sdk: flutter
gamepads_platform_interface: ^0.1.1
gamepads_platform_interface: ^0.1.2

dev_dependencies:
flame_lint: ^0.2.0
Expand Down

0 comments on commit 6fc8f5f

Please sign in to comment.