diff --git a/CHANGELOG.md b/CHANGELOG.md index e02cd1b..a413693 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## `v2.2.1` - 04/07/2024 + +### Changed + +- Moved an `@Inject` on `NoiseChunkGenerator#method_38332` to an `@Overwrite` + - This allows other mods, such as [ishland](https://github.com/ishland)'s mods, to change the `Executor` of + `NoiseChunkGenerator#populateNoise`'s `CompletableFuture`. + ## `v2.2.0` - 21/06/2024 ### Added diff --git a/CHANGELOG_LATEST.md b/CHANGELOG_LATEST.md index a8f0a56..478cdce 100644 --- a/CHANGELOG_LATEST.md +++ b/CHANGELOG_LATEST.md @@ -1,3 +1,5 @@ -### Added +### Changed -- Minecraft 1.21 compatibility +- Moved an `@Inject` on `NoiseChunkGenerator#method_38332` to an `@Overwrite` + - This allows other mods, such as [ishland](https://github.com/ishland)'s mods, to change the `Executor` of + `NoiseChunkGenerator#populateNoise`'s `CompletableFuture`. diff --git a/gradle.properties b/gradle.properties index 479e6e1..24f1ea4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,7 +12,7 @@ mod_namespace=noisium mod_name=Noisium mod_description=Optimises worldgen performance for a better gameplay experience. mod_license=LGPL-3.0 -mod_version=2.2.0 +mod_version=2.2.1 supported_minecraft_version=>=1.20.2 <=1.20.4 supported_minecraft_version_name=1.20.2-1.20.4