From 473f590734d5a3d9ce916a199ed4886fdc28826f Mon Sep 17 00:00:00 2001 From: AJ Date: Sun, 28 Jul 2024 12:17:06 -0700 Subject: [PATCH] Release version 2.7.2 --- CHANGELOG.md | 5 ++++- README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f32d750b4..da7bd8daf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,16 @@ # Changelog ## Unreleased + +## 2.7.2 ### Fixed - Fixed raw mode on macOS for JVM and native not using the correct termios constants. [(#180)](https://github.com/ajalt/mordant/issues/180) - Raw mode on macOS and Linux will now report the `ESC ESC` sequence as an `Escape` key event. +- Fixed raw mode on GraalVM native image not compiling with musl libc. Contributed by @hubvd [(#189)](https://github.com/ajalt/mordant/issues/189) ## 2.7.1 ## Added -- Added support for raw mode on GraalVM native Image. Contributed by @hubvd [(#186)](https://github.com/ajalt/mordant/issues/186) +- Added support for raw mode on GraalVM native image on macOS and Linux. Contributed by @hubvd [(#186)](https://github.com/ajalt/mordant/issues/186) ### Fixed - Fix markdown rendering not supporting math blocks [(#182)](https://github.com/ajalt/mordant/issues/182) diff --git a/README.md b/README.md index 02c0a2bce..8db6b7e0a 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.7.1") + implementation("com.github.ajalt.mordant:mordant:2.7.2") // optional extensions for running animations with coroutines - implementation("com.github.ajalt.mordant:mordant-coroutines:2.7.1") + implementation("com.github.ajalt.mordant:mordant-coroutines:2.7.2") } ``` diff --git a/gradle.properties b/gradle.properties index 808e36eae..7cf3551ba 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=2.7.1 +VERSION_NAME=2.7.2 kotlin.mpp.stability.nowarn=true