Skip to content

Commit

Permalink
Release version 2.0.0-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
ajalt committed Jun 2, 2021
1 parent 20a8f3c commit f0d7c2f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION_NAME=2.0.0-beta1
VERSION_NAME=2.0.0-beta2

kotlin.mpp.stability.nowarn=true

0 comments on commit f0d7c2f

Please sign in to comment.