From 91fe21cbb62ea5db509d11f3f0ec58c4ff3ae09b Mon Sep 17 00:00:00 2001 From: AJ Date: Tue, 30 Jan 2024 09:24:23 -0800 Subject: [PATCH] Release version 2.3.0 --- CHANGELOG.md | 5 ++++- README.md | 2 +- gradle.properties | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1766929e2..4512781ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 2.3.0 ### Added - Vararg constructors for `UnorderedList` and `OrderedList` - `UnorderedList` and `OrderedList` now support being empty @@ -9,6 +9,9 @@ ### Changed - When setting conflicting styles on a `Table` or its cells, the innermost style now takes precedence (i.e. if you set different styles on the whole table and a cell, the style applied to the cell will be used). +### Fixed +- Updated bundled proguard rules [(#130)](https://github.com/ajalt/mordant/issues/130) + ## 2.2.0 ### Added - Added `ColumnWidth.Custom` that allows more control over column width behavior in tables. [(#109)](https://github.com/ajalt/mordant/issues/109) diff --git a/README.md b/README.md index a625a25f7..b3f3328cf 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Mordant is distributed through Maven Central. ```groovy dependencies { - implementation("com.github.ajalt.mordant:mordant:2.2.0") + implementation("com.github.ajalt.mordant:mordant:2.3.0") } ``` diff --git a/gradle.properties b/gradle.properties index 7560c9cdd..c7737d859 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=2.2.0 +VERSION_NAME=2.3.0 kotlin.mpp.stability.nowarn=true