Skip to content

Commit

Permalink
Release 0.4.12 (#52)
Browse files Browse the repository at this point in the history
Build Updates:
* Update build.gradle
* Update gradle-wrapper.properties
* Update settings.gradle

Documentation:
* Update README.md
  • Loading branch information
DK96-OS authored Sep 26, 2024
1 parent c3e11c4 commit 0ddbae9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The `CoroutineQueue` is a simple yet powerful class designed to manage and execu
## Usage
To use the `CoroutineQueue`, first add the following dependency to your project's `build.gradle` file:
```groovy
implementation "io.github.dk96-os.coroutines:queue:0.4.11"
implementation "io.github.dk96-os.coroutines:queue:0.4.12"
```
After adding the dependency, you can use the `CoroutineQueue` class in your Kotlin code as shown below:

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
google()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.24")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25")
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 4 additions & 4 deletions queue/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ publishing {
maven(MavenPublication) {
groupId = "io.github.dk96-os.coroutines"
artifactId = "queue"
version = "0.4.11"
version = "0.4.12"
from components.java
}
}
}

dependencies {
// Coroutine support
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.1"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0"

// JUnit 5
testImplementation platform("org.junit:junit-bom:5.10.2")
testImplementation platform("org.junit:junit-bom:5.11.1")
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.junit.jupiter:junit-jupiter-params"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

pluginManagement {
plugins {
id "org.jetbrains.kotlin.jvm" version "1.9.24"
id "org.jetbrains.kotlin.jvm" version "1.9.25"
id "org.jetbrains.dokka" version "1.9.20"
}
repositories {
Expand Down

0 comments on commit 0ddbae9

Please sign in to comment.