Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update com.github.philippheuer.events4j to v0.11.0 #641

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.gradle.kts
Expand Up @@ -27,8 +27,8 @@ allprojects {
"https://javadoc.io/doc/commons-configuration/commons-configuration/1.10",
"https://javadoc.io/doc/com.bucket4j/bucket4j_jdk8-core/8.1.0",
// "https://javadoc.io/doc/com.squareup.okhttp3/okhttp/4.9.3", // blocked by https://github.com/square/okhttp/issues/6450
"https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-core/0.10.0",
"https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-handler-simple/0.10.0",
"https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-core/0.11.0",
"https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-handler-simple/0.11.0",
"https://javadoc.io/doc/com.github.philippheuer.credentialmanager/credentialmanager/0.1.4",
"https://javadoc.io/doc/io.github.openfeign/feign-slf4j/11.9.1",
"https://javadoc.io/doc/io.github.openfeign/feign-okhttp/11.9.1",
Expand Down Expand Up @@ -88,8 +88,8 @@ subprojects {
api(group = "com.squareup.okhttp3", name = "okhttp", version = "4.9.3")

// Event Dispatcher
api(group = "com.github.philippheuer.events4j", name = "events4j-core", version = "0.10.0")
api(group = "com.github.philippheuer.events4j", name = "events4j-handler-simple", version = "0.10.0")
api(group = "com.github.philippheuer.events4j", name = "events4j-core", version = "0.11.0")
api(group = "com.github.philippheuer.events4j", name = "events4j-handler-simple", version = "0.11.0")

// Credential Manager
api(group = "com.github.philippheuer.credentialmanager", name = "credentialmanager", version = "0.1.4")
Expand Down
2 changes: 1 addition & 1 deletion kotlin/build.gradle.kts
Expand Up @@ -10,7 +10,7 @@ dependencies {
// This shouldn't be an issue as most, if not all, code are extension functions.
compileOnly(project(":twitch4j"))

api(group = "com.github.philippheuer.events4j", name = "events4j-kotlin", version = "0.10.0")
api(group = "com.github.philippheuer.events4j", name = "events4j-kotlin", version = "0.11.0")

// Kotlin coroutines
api(group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version = "1.6.4")
Expand Down