Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}
object Conf {
const val GROUP = "net.kigawa"
const val VERSION = "3.3.0"
const val VERSION = "3.3.1"
}

group = Conf.GROUP
Expand Down
3 changes: 1 addition & 2 deletions hakate/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,9 @@ kotlin {

}
sourceSets["jvmMain"].dependencies {
implementation(libs.kotlin.test.junit)
}
sourceSets["jvmTest"].dependencies {

implementation(libs.kotlin.test.junit)
}

sourceSets["jsMain"].dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import net.kigawa.hakate.impl.dispatcher.StateDispatcherImpl

/**
* Hakateの初期化を行う
*/
class HakateInitializer() {
var coroutineScope = CoroutineScope(Dispatchers.Default)
fun newStateDispatcher() = StateDispatcherImpl(coroutineScope)
Expand Down
Loading