From 0b7b82cde86a206f5c9e5bbbe8530ceea80433bb Mon Sep 17 00:00:00 2001 From: AJ Date: Fri, 17 May 2024 09:52:46 -0700 Subject: [PATCH] Release version 2.6.0 --- CHANGELOG.md | 2 ++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fd80faac..673fe94c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## Unreleased + +## 2.6.0 ### Added - Publish `iosArm64` and `iosX64` targets. - Added `MultiplatformSystem` that provides multiplatform implementations of some non-terminal functionality that commonly used for command line apps: `readEnvironmentVariable`, `exitProcess`, and `readFileAsUtf8`. diff --git a/README.md b/README.md index 312a85654..68c4e1917 100644 --- a/README.md +++ b/README.md @@ -22,10 +22,10 @@ Mordant is distributed through Maven Central. ```groovy dependencies { - implementation("com.github.ajalt.mordant:mordant:2.5.0") + implementation("com.github.ajalt.mordant:mordant:2.6.0") // optional extensions for running animations with coroutines - implementation("com.github.ajalt.mordant:mordant-coroutines:2.5.0") + implementation("com.github.ajalt.mordant:mordant-coroutines:2.6.0") } ``` diff --git a/gradle.properties b/gradle.properties index 4cadd02fc..dde6be42a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=2.5.0 +VERSION_NAME=2.6.0 kotlin.mpp.stability.nowarn=true