From 6a96d14a5b5cf953fd125b209589a1bc8f713b2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Hrivn=C3=A1k?= Date: Tue, 23 Jul 2024 21:27:31 +0200 Subject: [PATCH] Bump version & update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ build.gradle.kts | 2 +- src/commonMain/kotlin/teksturepako/pakku/Version.kt | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8db34e91..51a64728 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 553cad0f..69ed7e61 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 40795030..047061d2 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"