File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -37,10 +37,10 @@ Add the dependencies into the project's `build.gradle`
37
37
38
38
``` groovy
39
39
dependencies {
40
- compile 'io.kategory:kategory:0.3.12 '
41
- kapt 'io.kategory:kategory-annotations-processor:0.3.12 ' //optional
42
- compile 'io.kategory:kategory-effects:0.3.12 ' //optional
43
- compile 'io.kategory:kategory-optics:0.3.12 ' //optional
40
+ compile 'io.kategory:kategory:0.4.0 '
41
+ kapt 'io.kategory:kategory-annotations-processor:0.4.0 ' //optional
42
+ compile 'io.kategory:kategory-effects:0.4.0 ' //optional
43
+ compile 'io.kategory:kategory-optics:0.4.0 ' //optional
44
44
}
45
45
```
46
46
@@ -57,7 +57,7 @@ apply from: rootProject.file('gradle/generated-kotlin-sources.gradle') //optiona
57
57
58
58
dependencies {
59
59
...
60
- kapt 'io.kategory:kategory-annotations-processor:0.3.12 ' //optional
60
+ kapt 'io.kategory:kategory-annotations-processor:0.4.0 ' //optional
61
61
...
62
62
}
63
63
```
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ elif [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
13
13
fail " Failed release deployment: was pull request."
14
14
elif [ " $TRAVIS_BRANCH " != " $BRANCH " ]; then
15
15
fail " Failed release deployment: wrong branch. Expected '$BRANCH ' but was '$TRAVIS_BRANCH '."
16
- elif ! [ " $VERSION_NAME " =~ $VERSION_PATTERN ]; then
16
+ elif ! [[ " $VERSION_NAME " =~ $VERSION_PATTERN ] ]; then
17
17
fail " Failed release deployment: wrong version. Expected '$VERSION_NAME ' to have pattern 'X.Y.Z'"
18
18
else
19
19
./gradlew uploadArchives bintrayUpload
Original file line number Diff line number Diff line change 1
1
# Package definitions
2
2
GROUP =io.kategory
3
- VERSION_NAME =0.3.12
3
+ VERSION_NAME =0.4.0
4
4
# Gradle options
5
5
org.gradle.jvmargs =-Xmx4g
6
6
You can’t perform that action at this time.
0 commit comments