diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 11fea0f..b7c9dac 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"1.0.0"} +{".":"2.0.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b89117..2ff3ca6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [2.0.0](https://github.com/OneLiteFeatherNET/Falco/compare/v1.0.0...v2.0.0) (2026-08-05) + + +### ⚠ BREAKING CHANGES + +* **anvil:** make the version guard and the unknown-entry fallback replaceable services ([#47](https://github.com/OneLiteFeatherNET/Falco/issues/47)) +* **anvil:** refuse a world the loader cannot read instead of returning air ([#45](https://github.com/OneLiteFeatherNET/Falco/issues/45)) + +### Features + +* **anvil:** make the version guard and the unknown-entry fallback replaceable services ([#47](https://github.com/OneLiteFeatherNET/Falco/issues/47)) ([94dc761](https://github.com/OneLiteFeatherNET/Falco/commit/94dc7617cf985ddf1b72037ffd3a50138a0070e6)) +* **migration:** an engine that lifts a stored 1.13 chunk to the version the server writes ([#48](https://github.com/OneLiteFeatherNET/Falco/issues/48)) ([22a9736](https://github.com/OneLiteFeatherNET/Falco/commit/22a973613dcdec973f781838952a38f331097f01)) + + +### Bug Fixes + +* **anvil:** refuse a world the loader cannot read instead of returning air ([#45](https://github.com/OneLiteFeatherNET/Falco/issues/45)) ([1bdd0cc](https://github.com/OneLiteFeatherNET/Falco/commit/1bdd0cca920d19ed934395fcedc620a01cb84507)) + ## [1.0.0](https://github.com/OneLiteFeatherNET/Falco/compare/v0.3.0...v1.0.0) (2026-08-03) diff --git a/build.gradle.kts b/build.gradle.kts index 26cda38..308b5d4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { alias(libs.plugins.japicmp) apply false } -version = "1.0.0" // x-release-please-version +version = "2.0.0" // x-release-please-version if (providers.gradleProperty("snapshot").isPresent) { val parts = version.toString().substringBefore('-').split('.')