diff --git a/CHANGELOG.md b/CHANGELOG.md index 8db34e9..51a6472 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased +## v0.14.0 + +- Fixed import not recognizing files outside modpack folder. +- Removed `korlibs.io` dependency and added `kotlinx.atomicfu`. +- Unzipping files now uses `okio` under the hood. + ## v0.13.1 - Removed unwanted `File not found: '.\.pakku\cli-config.json'` print diff --git a/build.gradle.kts b/build.gradle.kts index 553cad0..69ed7e6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,7 +16,7 @@ plugins { } group = "teksturepako.pakku" -version = "0.13.1" +version = "0.14.0" val nativeEnabled = false diff --git a/src/commonMain/kotlin/teksturepako/pakku/Version.kt b/src/commonMain/kotlin/teksturepako/pakku/Version.kt index 4079503..047061d 100644 --- a/src/commonMain/kotlin/teksturepako/pakku/Version.kt +++ b/src/commonMain/kotlin/teksturepako/pakku/Version.kt @@ -2,4 +2,4 @@ package teksturepako.pakku -const val VERSION = "0.13.1" +const val VERSION = "0.14.0"