File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
src/commonMain/kotlin/org/reduxkotlin Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11ext. versions = [
2- kotlin : ' 1.3.30 ' ,
2+ kotlin : ' 1.3.41 ' ,
33 dokka : ' 0.9.17' ,
44 spek : ' 2.1.0-alpha.0.9+3d5d865' ,
55 atrium : ' 0.8.0'
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ apply plugin: 'kotlin-multiplatform'
77archivesBaseName = ' redux-kotlin-thunk'
88
99group ' org.reduxkotlin'
10- version ' 0.2.3 '
10+ version ' 0.2.4 '
1111
1212kotlin {
1313 jvm()
@@ -34,7 +34,7 @@ kotlin {
3434 commonMain {
3535 dependencies {
3636 implementation kotlin(" stdlib-common" )
37- implementation " org.reduxkotlin:redux-kotlin:0.2.1 "
37+ implementation " org.reduxkotlin:redux-kotlin:0.2.4 "
3838 }
3939 }
4040 commonTest {
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ fun createThunkMiddleware(extraArgument: Any? = null): ThunkMiddleware =
1010 try {
1111 (action as Thunk )(store.dispatch, store.getState, extraArgument)
1212 } catch (e: Exception ) {
13+ throw IllegalArgumentException ()
1314// Logger.d("Dispatching functions must use type Thunk: " + e.message)
1415 }
1516 } else {
You can’t perform that action at this time.
0 commit comments