Skip to content

Commit

Permalink
Update Kotter to v1.1.0
Browse files Browse the repository at this point in the history
Fixes #63
  • Loading branch information
bitspittle committed Mar 28, 2023
1 parent 3be1b11 commit ab289e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![version: 1.1.0rc4](https://img.shields.io/badge/kotter-v1.1.0_rc4-blue)
![version: 1.1.0](https://img.shields.io/badge/kotter-v1.1.0-blue)
![kotter tests](https://github.com/varabyte/kotter/actions/workflows/gradle-test.yml/badge.svg?branch=main)
![kotter coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/bitspittle/1fab2b6fd23489bdea3f5d1f38e4dcb2/raw/kotter-coverage-badge.json)
<a href="https://varabyte.github.io/kotter">
Expand Down Expand Up @@ -34,9 +34,6 @@ session {

*See also: [the game of life](examples/life), [snake](examples/snake), [sliding tiles](examples/sliding), [doom fire](examples/doomfire), and [Wordle](examples/wordle) implemented in Kotter!*

| NOTE: 1.1.0 is pre-release (though still recommended to use). [You can read the docs for 1.0.2 here.](https://github.com/varabyte/kotter/blob/d2068cb948d294639ef41ace5b9bd5e3509e86fb/README.md) |
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|

---

Kotter (a **KOT**lin **TER**minal library) aims to be a relatively thin, declarative, Kotlin-idiomatic API that provides
Expand Down Expand Up @@ -83,7 +80,7 @@ repositories {
}

dependencies {
implementation("com.varabyte.kotter:kotter-jvm:1.1.0-rc4")
implementation("com.varabyte.kotter:kotter-jvm:1.1.0")
}
```

Expand Down Expand Up @@ -112,7 +109,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("com.varabyte.kotter:kotter:1.1.0-rc4")
implementation("com.varabyte.kotter:kotter:1.1.0")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jline = "3.21.0"
kotlin = "1.7.20" # Don't increase! We're intentionally using an old a version as possiblefor better compatibility
kotlinx-coroutines = "1.6.4"
kotlinx-serialization = "1.5.0"
kotter = "1.1.0-rc4"
kotter = "1.1.0"
kover = "0.6.1"
nexus-publish = "1.2.0"
okhttp = "4.9.3"
Expand Down

0 comments on commit ab289e6

Please sign in to comment.