diff --git a/CHANGELOG.md b/CHANGELOG.md index 086d8ef..1d5d2d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2024-12-14 + +### Changes + +--- + +Packages with breaking changes: + + - [`forge2d` - `v0.14.0`](#forge2d---v0140) + +Packages with other changes: + + - There are no other changes in this release. + +--- + +#### `forge2d` - `v0.14.0` + + - **REFACTOR**: remove dead code ([#97](https://github.com/flame-engine/forge2d/issues/97)). ([6a75e0d2](https://github.com/flame-engine/forge2d/commit/6a75e0d2d4452bed3bfe6dbe35f84af9acebff76)) + - **BREAKING** **REFACTOR**: Use vector_math 32 instead of 64 ([#96](https://github.com/flame-engine/forge2d/issues/96)). ([2d726279](https://github.com/flame-engine/forge2d/commit/2d72627937e6b8dca672ed4dbc2de16577400623)) + + ## 2024-08-06 ### Changes diff --git a/packages/benchmark/pubspec.yaml b/packages/benchmark/pubspec.yaml index b0154bc..2b1884d 100644 --- a/packages/benchmark/pubspec.yaml +++ b/packages/benchmark/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: build_runner: ^2.4.5 build_web_compilers: ^4.0.3 - forge2d: ^0.13.1 + forge2d: ^0.14.0 dev_dependencies: flame_lint: ^1.1.1 diff --git a/packages/forge2d/CHANGELOG.md b/packages/forge2d/CHANGELOG.md index cce0f37..ce08d61 100644 --- a/packages/forge2d/CHANGELOG.md +++ b/packages/forge2d/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.14.0 + +> Note: This release has breaking changes. + + - **REFACTOR**: remove dead code ([#97](https://github.com/flame-engine/forge2d/issues/97)). ([6a75e0d2](https://github.com/flame-engine/forge2d/commit/6a75e0d2d4452bed3bfe6dbe35f84af9acebff76)) + - **BREAKING** **REFACTOR**: Use vector_math 32 instead of 64 ([#96](https://github.com/flame-engine/forge2d/issues/96)). ([2d726279](https://github.com/flame-engine/forge2d/commit/2d72627937e6b8dca672ed4dbc2de16577400623)) + ## 0.13.1 - **REFACTOR**: Don't use static for Distance and Collision ([#92](https://github.com/flame-engine/forge2d/issues/92)). ([130994e1](https://github.com/flame-engine/forge2d/commit/130994e1f109071c690d4a8a970b28e106d9625e)) diff --git a/packages/forge2d/example/pubspec.yaml b/packages/forge2d/example/pubspec.yaml index 2121d6f..7f7159b 100644 --- a/packages/forge2d/example/pubspec.yaml +++ b/packages/forge2d/example/pubspec.yaml @@ -9,7 +9,7 @@ environment: sdk: ">=3.0.0 <4.0.0" dependencies: - forge2d: ^0.13.1 + forge2d: ^0.14.0 dev_dependencies: build_runner: ^2.4.5 diff --git a/packages/forge2d/pubspec.yaml b/packages/forge2d/pubspec.yaml index f57f832..74efc20 100644 --- a/packages/forge2d/pubspec.yaml +++ b/packages/forge2d/pubspec.yaml @@ -1,5 +1,5 @@ name: forge2d -version: 0.13.1 +version: 0.14.0 description: A 2D physics engine for Dart (based on Box2D), also works with the Flame game engine in Flutter homepage: https://github.com/flame-engine/forge2d