From 3eac58193a61924e67ac621fe650d2fb215340bc Mon Sep 17 00:00:00 2001 From: AJ Date: Sat, 29 Jun 2024 10:57:35 -0700 Subject: [PATCH] Reelase version 2.7.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 a9b6e55ea..06534a733 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## Unreleased + +## 2.7.0 ### Added - Added raw mode support for reading keyboard and mouse events. See the docs at [https://ajalt.github.io/mordant/](https://ajalt.github.io/mordant/input/) for details. This feature is currently supported on all targets except JS, wasmJS, and Graal Native Image. - Added `Termianl.interactiveSelectList`, `Terminal.interactiveMultiSelectList`, and `InteractiveSelectListBuilder` that let you pick one or more items from a list using the arrow keys. diff --git a/README.md b/README.md index 68c4e1917..799051d9d 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.6.0") + implementation("com.github.ajalt.mordant:mordant:2.7.0") // optional extensions for running animations with coroutines - implementation("com.github.ajalt.mordant:mordant-coroutines:2.6.0") + implementation("com.github.ajalt.mordant:mordant-coroutines:2.7.0") } ``` diff --git a/gradle.properties b/gradle.properties index dde6be42a..842b98ab1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=2.6.0 +VERSION_NAME=2.7.0 kotlin.mpp.stability.nowarn=true