Skip to content

Commit

Permalink
chore(release): Publish packages (#3117)
Browse files Browse the repository at this point in the history
```
Package Name          Current Version   Updated Version   Update Reason
flame_forge2d         0.17.1            0.18.0            manual versioning
flame_texturepacker   3.2.0             4.0.0             updated with major changes
flame_tiled           1.20.0            1.20.1            updated with patch changes
```
  • Loading branch information
spydon authored Apr 5, 2024
1 parent fd113b7 commit cca12b8
Show file tree
Hide file tree
Showing 12 changed files with 55 additions and 9 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,37 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2024-04-05

### Changes

---

Packages with breaking changes:

- [`flame_texturepacker` - `v4.0.0`](#flame_texturepacker---v400)

Packages with other changes:

- [`flame_forge2d` - `v0.18.0`](#flame_forge2d---v0180)
- [`flame_tiled` - `v1.20.1`](#flame_tiled---v1201)

---

#### `flame_texturepacker` - `v4.0.0`

- **BREAKING** **FEAT**: Use `Flame.images` in flame_texturepacker ([#3103](https://github.com/flame-engine/flame/issues/3103)). ([418cc578](https://github.com/flame-engine/flame/commit/418cc578053d969a4a5c3789b1713b9e1a4b3bdd))

#### `flame_forge2d` - `v0.18.0`

- **FIX**: Use camera argument name in Forge2DGame ([#3115](https://github.com/flame-engine/flame/issues/3115)). ([9d97b123](https://github.com/flame-engine/flame/commit/9d97b12348161b4b150ee4166ba552f28d5f9d8b))
- **DOCS**: Upgrade dashbook version ([#3109](https://github.com/flame-engine/flame/issues/3109)). ([a717bcb4](https://github.com/flame-engine/flame/commit/a717bcb475a5604c5d8c66a3a5ac53f0dc173109))

#### `flame_tiled` - `v1.20.1`

- **FIX**: Respect tile offset when drawing tiles ([#3112](https://github.com/flame-engine/flame/issues/3112)). ([e3477474](https://github.com/flame-engine/flame/commit/e34774743038bc75fec14afc3c753fa997e71577))


## 2024-03-29

### Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/games/padracing/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment:
dependencies:
collection: ^1.17.1
flame: ^1.17.0
flame_forge2d: ^0.17.1
flame_forge2d: ^0.18.0
flutter:
sdk: flutter
google_fonts: ^4.0.4
Expand Down
4 changes: 2 additions & 2 deletions examples/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ dependencies:
dashbook: ^0.1.14
flame: ^1.17.0
flame_audio: ^2.10.1
flame_forge2d: ^0.17.1
flame_forge2d: ^0.18.0
flame_isolate: ^0.6.0+1
flame_lottie: ^0.4.0+1
flame_noise: ^0.3.0+1
flame_spine: ^0.2.0+1
flame_svg: ^1.10.1
flame_tiled: ^1.20.0
flame_tiled: ^1.20.1
flutter:
sdk: flutter
google_fonts: ^4.0.4
Expand Down
5 changes: 5 additions & 0 deletions packages/flame_forge2d/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.18.0

- **FIX**: Use camera argument name in Forge2DGame ([#3115](https://github.com/flame-engine/flame/issues/3115)). ([9d97b123](https://github.com/flame-engine/flame/commit/9d97b12348161b4b150ee4166ba552f28d5f9d8b))
- **DOCS**: Upgrade dashbook version ([#3109](https://github.com/flame-engine/flame/issues/3109)). ([a717bcb4](https://github.com/flame-engine/flame/commit/a717bcb475a5604c5d8c66a3a5ac53f0dc173109))

## 0.17.1

- **FIX**: Null gravity override by Forge2dGame ([#3092](https://github.com/flame-engine/flame/issues/3092)). ([3c35d59b](https://github.com/flame-engine/flame/commit/3c35d59b4a4ec064106d24a17e748005a20d9fde))
Expand Down
2 changes: 1 addition & 1 deletion packages/flame_forge2d/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ environment:

dependencies:
flame: ^1.17.0
flame_forge2d: ^0.17.1
flame_forge2d: ^0.18.0
flutter:
sdk: flutter

Expand Down
2 changes: 1 addition & 1 deletion packages/flame_forge2d/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flame_forge2d
description: Forge2D (Box2D) support for the Flame game engine. This uses the forge2d package and provides wrappers and components to be used inside Flame.
version: 0.17.1
version: 0.18.0
homepage: https://github.com/flame-engine/flame/tree/main/packages/flame_forge2d
funding:
- https://opencollective.com/blue-fire
Expand Down
6 changes: 6 additions & 0 deletions packages/flame_texturepacker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 4.0.0

> Note: This release has breaking changes.
- **BREAKING** **FEAT**: Use `Flame.images` in flame_texturepacker ([#3103](https://github.com/flame-engine/flame/issues/3103)). ([418cc578](https://github.com/flame-engine/flame/commit/418cc578053d969a4a5c3789b1713b9e1a4b3bdd))

## 3.2.0

- **REFACTOR**: Deprecate `fromAtlas` in favour of `atlasFromAssets` and `atlasFromStorage` ([#3098](https://github.com/flame-engine/flame/issues/3098)). ([6c8190b7](https://github.com/flame-engine/flame/commit/6c8190b7215671e7d6e1e271b6aac2a9723ec20d))
Expand Down
2 changes: 1 addition & 1 deletion packages/flame_texturepacker/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment:

dependencies:
flame: ^1.17.0
flame_texturepacker: ^3.2.0
flame_texturepacker: ^4.0.0
flutter:
sdk: flutter

Expand Down
2 changes: 1 addition & 1 deletion packages/flame_texturepacker/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flame_texturepacker
description: A simple plugin for the Flame Engine to import spritesheets generated by the TexturePacker tool.
version: 3.2.0
version: 4.0.0
homepage: https://github.com/flame-engine/flame/tree/main/packages/flame_texturepacker
funding:
- https://opencollective.com/blue-fire
Expand Down
4 changes: 4 additions & 0 deletions packages/flame_tiled/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.20.1

- **FIX**: Respect tile offset when drawing tiles ([#3112](https://github.com/flame-engine/flame/issues/3112)). ([e3477474](https://github.com/flame-engine/flame/commit/e34774743038bc75fec14afc3c753fa997e71577))

## 1.20.0

- **FEAT**: Export `TileAtlas` from `flame_tiled` package ([#3049](https://github.com/flame-engine/flame/issues/3049)). ([41e9e4e3](https://github.com/flame-engine/flame/commit/41e9e4e38c643b07a3a7269b1cd8d3fa60cbeebb))
Expand Down
2 changes: 1 addition & 1 deletion packages/flame_tiled/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ environment:

dependencies:
flame: ^1.17.0
flame_tiled: ^1.20.0
flame_tiled: ^1.20.1
flutter:
sdk: flutter

Expand Down
2 changes: 1 addition & 1 deletion packages/flame_tiled/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flame_tiled
description: Tiled support for the Flame game engine. This uses the tiled package and provides wrappers and components to be used inside Flame.
version: 1.20.0
version: 1.20.1
homepage: https://github.com/flame-engine/flame/tree/main/packages/flame_tiled
funding:
- https://opencollective.com/blue-fire
Expand Down

0 comments on commit cca12b8

Please sign in to comment.