Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.2.1"}
{".":"0.3.0"}
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down