Skip to content
Open
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.3.0"}
{".":"1.0.0"}
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## [1.0.0](https://github.com/OneLiteFeatherNET/Falco/compare/v0.3.0...v1.0.0) (2026-08-02)


### ⚠ BREAKING CHANGES

* FalcoAnvilLoader.Builder slots return a new builder instead of the same one. Chained calls are unaffected; a caller who relied on mutating a builder through a stored reference has to keep the returned value. The type was never published in a release.

### Features

* **archunit:** enforce the architecture rules the compiler cannot see ([#12](https://github.com/OneLiteFeatherNET/Falco/issues/12)) ([cb30cf0](https://github.com/OneLiteFeatherNET/Falco/commit/cb30cf0a44efa0d4eb700c0f4b69271bf7fdc72b))
* **bom:** add falco-bom, a platform pinning the published modules ([#5](https://github.com/OneLiteFeatherNET/Falco/issues/5)) ([33f220f](https://github.com/OneLiteFeatherNET/Falco/commit/33f220f4b27d2791b691ca65dee3afa8413bd34c))
* **demo:** put the sun where you want to judge the light from ([#6](https://github.com/OneLiteFeatherNET/Falco/issues/6)) ([94b287c](https://github.com/OneLiteFeatherNET/Falco/commit/94b287cf2aaf774ad1c0b7e78bc06d3378151ab5))
* give the three modules a fluent construction API ([#16](https://github.com/OneLiteFeatherNET/Falco/issues/16)) ([86f098b](https://github.com/OneLiteFeatherNET/Falco/commit/86f098bfe68d4bb51eb07df8eb3adbba71a3a00c))


### Bug Fixes

* **build:** drop the JUnit parallelism that was never in effect ([#17](https://github.com/OneLiteFeatherNET/Falco/issues/17)) ([96276f7](https://github.com/OneLiteFeatherNET/Falco/commit/96276f7004d7513f4e5d9d3ff36b10896762ecc5))
* close three latent defects found while modernising for Java 25 ([#10](https://github.com/OneLiteFeatherNET/Falco/issues/10)) ([124d21d](https://github.com/OneLiteFeatherNET/Falco/commit/124d21da23cc4192bddd2bd8b3cc0008094d6f0b))
* **demo:** compare report paths independently of the platform separator ([#8](https://github.com/OneLiteFeatherNET/Falco/issues/8)) ([6907459](https://github.com/OneLiteFeatherNET/Falco/commit/6907459380df9303f97ab44f944add25b98ca6c4))
* **demo:** put the player where the world is, not at the origin ([#18](https://github.com/OneLiteFeatherNET/Falco/issues/18)) ([f405968](https://github.com/OneLiteFeatherNET/Falco/commit/f405968cf5123c105510b03101e44e0a0e3d762d))
* **instance:** publish the chunk supplier and loader safely ([#11](https://github.com/OneLiteFeatherNET/Falco/issues/11)) ([e45dc1e](https://github.com/OneLiteFeatherNET/Falco/commit/e45dc1e101088e60af3c5ec7705808cf5db72a1b))
* **light:** forget chunks that left the instance ([#14](https://github.com/OneLiteFeatherNET/Falco/issues/14)) ([1f72962](https://github.com/OneLiteFeatherNET/Falco/commit/1f72962af41d5ccd2e1188ca240dff273bd869a5))

## [0.3.0](https://github.com/OneLiteFeatherNET/Falco/compare/v0.2.1...v0.3.0) (2026-07-31)


Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Build rationale documented in the wiki: https://github.com/OneLiteFeatherNET/Falco/wiki

version = "0.3.0" // x-release-please-version
version = "1.0.0" // x-release-please-version

if (providers.gradleProperty("snapshot").isPresent) {
val parts = version.toString().substringBefore('-').split('.')
Expand Down