Skip to content

Commit

Permalink
version 2.2.0
Browse files Browse the repository at this point in the history
update infrastructure:
kotlin 1.6.20 -> 1.7.21
dokka 1.6.20 -> 1.7.20
org.javamodularity.moduleplugin 1.8.11 -> 1.8.12
coroutines 1.6.2 -> 1.6.4
kotlin-logging 2.1.23 -> 3.0.4
spek 2.0.18 -> 2.0.19
kotlin-csv-jvm 1.3.0 -> 1.6.0
  • Loading branch information
RationalityFrontline committed Nov 23, 2022
1 parent f285ffa commit 2b0ba34
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# KEvent
[![Maven Central](https://img.shields.io/maven-central/v/org.rationalityfrontline/kevent.svg?label=maven%20central)](https://search.maven.org/search?q=g:%22org.rationalityfrontline%22%20AND%20a:%22kevent%22)
[![Kotlin 1.6.20](https://img.shields.io/badge/kotlin-1.6.20-blue.svg)](http://kotlinlang.org)
[![Kotlin 1.7.21](https://img.shields.io/badge/kotlin-1.7.21-blue.svg)](http://kotlinlang.org)
![JDK](https://img.shields.io/badge/jdk-%3E%3D11-orange)
[![Apache License 2.0](https://img.shields.io/github/license/rationalityfrontline/kevent)](https://github.com/RationalityFrontline/kevent/blob/master/LICENSE)
[![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin)
Expand Down Expand Up @@ -35,15 +35,15 @@ A powerful in-process event dispatcher based on Kotlin and Coroutines.
## Download
**Gradle Kotlin DSL**
```kotlin
implementation("org.rationalityfrontline:kevent:2.1.2")
implementation("org.rationalityfrontline:kevent:2.2.0")
```

**Maven**
```xml
<dependency>
<groupId>org.rationalityfrontline</groupId>
<artifactId>kevent</artifactId>
<version>2.1.2</version>
<version>2.2.0</version>
</dependency>
```

Expand Down
18 changes: 9 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.6.20"
kotlin("jvm") version "1.7.21"
`java-library`
`maven-publish`
signing
id("org.jetbrains.dokka") version "1.6.20"
id("org.javamodularity.moduleplugin") version "1.8.11"
id("org.jetbrains.dokka") version "1.7.20"
id("org.javamodularity.moduleplugin") version "1.8.12"
}

group = "org.rationalityfrontline"
version = "2.1.2"
version = "2.2.0"
val NAME = "kevent"
val DESC = "A powerful in-process event dispatcher based on Kotlin and Coroutines"
val GITHUB_REPO = "RationalityFrontline/kevent"
Expand All @@ -20,15 +20,15 @@ repositories {
}

dependencies {
val coroutinesVersion = "1.6.2"
val coroutinesVersion = "1.6.4"
/** Kotlin --------------------------------------------------------- */
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:$coroutinesVersion")
/** Logging -------------------------------------------------------- */
implementation("io.github.microutils:kotlin-logging:2.1.23")
implementation("io.github.microutils:kotlin-logging:3.0.4")
/** Testing -------------------------------------------------------- */
val spekVersion = "2.0.18"
testImplementation("org.slf4j:slf4j-simple:1.7.36")
testImplementation("com.github.doyaaaaaken:kotlin-csv-jvm:1.3.0")
val spekVersion = "2.0.19"
testImplementation("org.slf4j:slf4j-simple:2.0.4")
testImplementation("com.github.doyaaaaaken:kotlin-csv-jvm:1.6.0")
testImplementation(kotlin("test"))
testImplementation("org.spekframework.spek2:spek-dsl-jvm:$spekVersion")
testRuntimeOnly("org.spekframework.spek2:spek-runner-junit5:$spekVersion")
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
requires kotlin.stdlib;
requires kotlinx.coroutines.core.jvm;
//logging
requires kotlin.logging.jvm;
requires io.github.microutils.kotlinlogging;

exports org.rationalityfrontline.kevent;
}

0 comments on commit 2b0ba34

Please sign in to comment.