Skip to content

Commit 9abecb6

Browse files
committed
bump version to 0.4.0
1 parent a21e5e0 commit 9abecb6

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
## Unreleased
2+
- kotlin 1.3.70
23

34
## [0.3.2] - 2020-02-22
45
- issue #34 - incorrect same thread enforcement behavior fixed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ kotlin {
4444
sourceSets {
4545
commonMain { // <--- name may vary on your project
4646
dependencies {
47-
implementation "org.reduxkotlin:redux-kotlin:0.3.2"
47+
implementation "org.reduxkotlin:redux-kotlin:0.4.0"
4848
}
4949
}
5050
}
5151
```
5252

5353
For JVM only:
5454
```
55-
implementation "org.reduxkotlin:redux-kotlin-jvm:0.3.2"
55+
implementation "org.reduxkotlin:redux-kotlin-jvm:0.4.0"
5656
```
5757

5858
Usage is very similar to JS Redux and those docs will be useful https://redux.js.org/. These docs are not an intro to Redux, and just documentation on Kotlin specific bits. For more info on Redux in general, check out https://redux.js.org/.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ android.enableJetifier=true
2121
kotlin.code.style=official
2222

2323
GROUP=org.reduxkotlin.redux-kotlin
24-
VERSION_NAME=0.3.2
24+
VERSION_NAME=0.4.0
2525

2626
POM_ARTIFACT_ID=reduxkotlin
2727
POM_DESCRIPTION=Redux implementation for Kotlin. Mulitiplatform supported.

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'kotlin-multiplatform'
77
archivesBaseName = 'redux-kotlin'
88

99
group 'org.reduxkotlin'
10-
version '0.3.2'
10+
version '0.4.0'
1111

1212
kotlin {
1313
jvm()

0 commit comments

Comments
 (0)