diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d5d2d2..8de67c3 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. +## 2025-09-07 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`forge2d` - `v0.14.1`](#forge2d---v0141) + +--- + +#### `forge2d` - `v0.14.1` + + - **FIX**: Destroy and create bodies after step is done ([#106](https://github.com/flame-engine/forge2d/issues/106)). ([92c7ccb8](https://github.com/flame-engine/forge2d/commit/92c7ccb85774a86a1f0656226e06a2504cdd47a6)) + - **FIX**: Fix CircleShape.computeDistanceToOut and add some tests. ([#100](https://github.com/flame-engine/forge2d/issues/100)). ([584a07e2](https://github.com/flame-engine/forge2d/commit/584a07e261573fbc2d9e39590b0d20eea74d733a)) + + ## 2024-12-14 ### Changes diff --git a/packages/benchmark/pubspec.yaml b/packages/benchmark/pubspec.yaml index 0dd12fb..5ee6a1a 100644 --- a/packages/benchmark/pubspec.yaml +++ b/packages/benchmark/pubspec.yaml @@ -12,7 +12,7 @@ environment: dependencies: build_runner: ^2.4.5 build_web_compilers: ^4.0.3 - forge2d: ^0.14.0 + forge2d: ^0.14.1 web: ^1.1.1 dev_dependencies: diff --git a/packages/forge2d/CHANGELOG.md b/packages/forge2d/CHANGELOG.md index ce08d61..cde3b10 100644 --- a/packages/forge2d/CHANGELOG.md +++ b/packages/forge2d/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.14.1 + + - **FIX**: Destroy and create bodies after step is done ([#106](https://github.com/flame-engine/forge2d/issues/106)). ([92c7ccb8](https://github.com/flame-engine/forge2d/commit/92c7ccb85774a86a1f0656226e06a2504cdd47a6)) + - **FIX**: Fix CircleShape.computeDistanceToOut and add some tests. ([#100](https://github.com/flame-engine/forge2d/issues/100)). ([584a07e2](https://github.com/flame-engine/forge2d/commit/584a07e261573fbc2d9e39590b0d20eea74d733a)) + ## 0.14.0 > Note: This release has breaking changes. diff --git a/packages/forge2d/example/pubspec.yaml b/packages/forge2d/example/pubspec.yaml index 37ab900..64f88d4 100644 --- a/packages/forge2d/example/pubspec.yaml +++ b/packages/forge2d/example/pubspec.yaml @@ -9,7 +9,7 @@ environment: sdk: ">=3.8.0 <4.0.0" dependencies: - forge2d: ^0.14.0 + forge2d: ^0.14.1 web: ^1.1.1 dev_dependencies: diff --git a/packages/forge2d/pubspec.yaml b/packages/forge2d/pubspec.yaml index 6206a94..d3963c8 100644 --- a/packages/forge2d/pubspec.yaml +++ b/packages/forge2d/pubspec.yaml @@ -1,5 +1,5 @@ name: forge2d -version: 0.14.0 +version: 0.14.1 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 resolution: workspace