Skip to content

Commit

Permalink
Release version 2.0.0-beta11
Browse files Browse the repository at this point in the history
  • Loading branch information
ajalt committed Jan 27, 2023
1 parent e8e75f2 commit 52ff8aa
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
java-version: 17
- uses: gradle/gradle-build-action@v2
with:
arguments: :mordant:jvmTest :mordant:jsIrTest ${{matrix.NATIVE_TEST_TASK}} --stacktrace
arguments: :mordant:jvmTest :mordant:jsTest ${{matrix.NATIVE_TEST_TASK}} --stacktrace
- name: Bundle the build report
if: failure()
run: find . -type d -name 'reports' | zip -@ -r build-reports.zip
Expand Down
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
# Changelog

## Unreleased
## 2.0.0-beta11
### Added
- Tables and other layouts can now be completely empty [(#82)](https://github.com/ajalt/mordant/issues/82)

### Changed
- Update Kotlin to 1.8.0

### Removed
- Removed JS/Legacy publication. The JS target only publishes artifact build with the IR compiler.

## 2.0.0-beta10
### Changed
- JVM: terminal detection now uses JNA to call kernel functions directly.
- Interactive state of stdin and stdout are now detected separately.
- Terminal size detection is now fast since it does not need a subprocess.
- Update Kotlin to 1.8.0

### Fixed
- Detect terminal correctly when running in the IntelliJ terminal tab, but not through a run action. [(#76)](https://github.com/ajalt/mordant/issues/76)

### Deprecated
- `timeoutMs` parameter to `TerminalDetection.updateTerminalSize`. This function is now fast on all platforms.

### Removed
- Removed JS/Legacy publication. The JS target only publishes artifact build with the IR compiler.

## 2.0.0-beta9
### Changed
- Stop stripping trailing newline from text when using `Whitespace.PRE` [(#75)](https://github.com/ajalt/mordant/issues/75)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ Mordant is distributed through Maven Central.

```groovy
dependencies {
implementation("com.github.ajalt.mordant:mordant:2.0.0-beta9")
implementation("com.github.ajalt.mordant:mordant:2.0.0-beta11")
}
```

Expand Down Expand Up @@ -291,7 +291,7 @@ repositories {

## License

Copyright 2018-2022 AJ Alt
Copyright 2018 AJ Alt

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
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-beta9
VERSION_NAME=2.0.0-beta11

kotlin.mpp.stability.nowarn=true

0 comments on commit 52ff8aa

Please sign in to comment.