diff options
author | isXander <xander@isxander.dev> | 2023-04-04 11:32:37 +0100 |
---|---|---|
committer | isXander <xander@isxander.dev> | 2023-04-04 11:32:37 +0100 |
commit | 257a50da0880dac23a81933e39b27e381616bd61 (patch) | |
tree | 5dd92a2d3b0ab27ec7eddc61a326839ee948505a | |
parent | af801145f3d44b33c8d5644e4c624bc39b4cf7ce (diff) | |
download | YetAnotherConfigLib-257a50da0880dac23a81933e39b27e381616bd61.tar.gz YetAnotherConfigLib-257a50da0880dac23a81933e39b27e381616bd61.tar.bz2 YetAnotherConfigLib-257a50da0880dac23a81933e39b27e381616bd61.zip |
📰 2.4.0 changelog
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | changelogs/2.4.0.md | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index ac28484..704d2bc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,7 +16,7 @@ plugins { val ciRun = System.getenv().containsKey("GITHUB_ACTIONS") group = "dev.isxander" -version = "2.3.1" +version = "2.4.0" if (ciRun) version = "$version+${grgit.branch.current().name.replace('/', '.')}-SNAPSHOT" diff --git a/changelogs/2.4.0.md b/changelogs/2.4.0.md new file mode 100644 index 0000000..2ccfebb --- /dev/null +++ b/changelogs/2.4.0.md @@ -0,0 +1,9 @@ +## Features + +- New builder API for `GsonConfigInstance`, deprecated the constructors. + +## Bug Fixes + +- Fixed `StringController`s not focusing properly since 2.3.1 ([#58](https://github.com/isXander/YetAnotherConfigLib/issues/58)). +- Fixed resetting a `StringController` sometimes crashing the game ([#57](https://github.com/isXander/YetAnotherConfigLib/issues/57)). +- Fix `ListOption.Builder` not exposing `listener()` like in `Option.Builder` ([#55](https://github.com/isXander/YetAnotherConfigLib/issues/55)). |