From f0d7c2f31b6138d17d7745c85f0c9235558b2419 Mon Sep 17 00:00:00 2001 From: AJ Date: Wed, 2 Jun 2021 09:49:07 -0700 Subject: [PATCH] Release version 2.0.0-beta2 --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 2 +- CHANGELOG.md | 5 ++++- README.md | 4 ++-- gradle.properties | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6f806fc6c..3ac864d66 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: - uses: eskatos/gradle-command-action@v1 with: dependencies-cache-enabled: true - arguments: check --stacktrace + arguments: :mordant:check --stacktrace - name: Bundle the build report if: failure() run: find . -type d -name 'reports' | zip -@ -r build-reports.zip diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ec0f49928..377e1074c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: - uses: eskatos/gradle-command-action@v1 with: dependencies-cache-enabled: true - arguments: check --stacktrace + arguments: :mordant:check --stacktrace - name: Bundle the build report if: failure() run: find . -type d -name 'reports' | zip -@ -r build-reports.zip diff --git a/CHANGELOG.md b/CHANGELOG.md index aee794d93..f74d66449 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,14 @@ ## Unreleased +## 2.0.0-beta2 +_2021-06-01_ + ### Added - Published artifacts for macOS ### Changed -- Update Kotlin to 1.5.0 +- Update Kotlin to 1.5.10 - All text instances and print functions now default to preformatted whitespace, meaning that spaces and newlines will be preserved. You can explicitly pass `Whitespace.NORMAL` to restore the previous behavior. ## 2.0.0-beta1 diff --git a/README.md b/README.md index 86e383e58..6ca893aa7 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ Terminal(AnsiLevel.TRUECOLOR) ## Tables Use the `table` DSL to quickly create tables. Mordant handles ANSI styles and wide characters like -CJK and emojii. +CJK and emoji. ```kotlin val t = Terminal() @@ -231,7 +231,7 @@ Mordant is distributed through Maven Central. ```groovy dependencies { - implementation("com.github.ajalt.mordant:mordant:2.0.0-beta1") + implementation("com.github.ajalt.mordant:mordant:2.0.0-beta2") } ``` diff --git a/gradle.properties b/gradle.properties index a900b6a52..6ca0cca81 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ -VERSION_NAME=2.0.0-beta1 +VERSION_NAME=2.0.0-beta2 kotlin.mpp.stability.nowarn=true