From b3b25ee5754788dbcad2518f38dba1fbbf94296a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2026 23:23:01 +0000 Subject: [PATCH] chore(main): release 0.3.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 24 ++++++++++++++++++++++++ build.gradle.kts | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 57e0617..1c861e1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.2.1"} +{".":"0.3.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index ed7e3b8..fa1006d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [0.3.0](https://github.com/OneLiteFeatherNET/Falco/compare/v0.2.1...v0.3.0) (2026-07-31) + + +### Features + +* **anvil:** say why a chunk was not returned ([d7e6b35](https://github.com/OneLiteFeatherNET/Falco/commit/d7e6b35d764e64abecd639c0c1fac429cbce48af)) +* **demo:** add falco-demo, a loader comparison on your own world ([87282d5](https://github.com/OneLiteFeatherNET/Falco/commit/87282d565b2595d323ba638a773204365487d585)) +* **demo:** add two servers you can actually join ([bea45e6](https://github.com/OneLiteFeatherNET/Falco/commit/bea45e6d3ae6808a598583954ff191352f0d6cf1)) +* **instance:** add falco-instance, an own Instance and Chunk ([cee5f94](https://github.com/OneLiteFeatherNET/Falco/commit/cee5f94e627155f49bc1150bf66cb2ca4cd1b227)) +* **instance:** implement the generator path and close the load race ([e45d695](https://github.com/OneLiteFeatherNET/Falco/commit/e45d6957c2b517d0201474bba9896443abbea84f)) +* **light:** add a chunk that keeps its own light up to date ([9d00a78](https://github.com/OneLiteFeatherNET/Falco/commit/9d00a78d2806bc879cb6893eea82a9f61c278708)) + + +### Bug Fixes + +* **build:** make an incomplete javadoc comment fail the build ([63334a6](https://github.com/OneLiteFeatherNET/Falco/commit/63334a64f8f597b4926c7fd71db89d46deafd475)) +* **demo:** both loaders skip a partial chunk, not just Falco ([861b881](https://github.com/OneLiteFeatherNET/Falco/commit/861b8813f76b19e8f06585fe83b48f9454ef08b1)) +* **light:** stop calculateWithNeighbours darkening the chunks it borrows ([e736b93](https://github.com/OneLiteFeatherNET/Falco/commit/e736b93f375406a2655e822b0130c9386357b0e2)) + + +### Performance Improvements + +* **light:** update a changed chunk instead of rebuilding it ([1063a54](https://github.com/OneLiteFeatherNET/Falco/commit/1063a54c6f785d19ac89588d4c59391c983e6d1d)) + ## [0.2.1](https://github.com/OneLiteFeatherNET/Falco/compare/v0.2.0...v0.2.1) (2026-07-31) diff --git a/build.gradle.kts b/build.gradle.kts index bf41c16..32b4882 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ // The two published modules always release together, so the version is declared once here and // inherited by every subproject. Release Please rewrites this single line; nothing else in the // build carries a version number. -version = "0.2.1" // x-release-please-version +version = "0.3.0" // x-release-please-version // Every push to main that does not cut a release publishes the current state as a snapshot, and the // derivation happens here rather than on the command line: a `-Pversion=…` would be silently