Skip to content

Commit e35598d

Browse files
authored
Merge pull request #507 from kategory/release/0.4.0
Release 0.4.0
2 parents bccdacb + 76eeb49 commit e35598d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ Add the dependencies into the project's `build.gradle`
3737

3838
```groovy
3939
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
4444
}
4545
```
4646

@@ -57,7 +57,7 @@ apply from: rootProject.file('gradle/generated-kotlin-sources.gradle') //optiona
5757
5858
dependencies {
5959
...
60-
kapt 'io.kategory:kategory-annotations-processor:0.3.12' //optional
60+
kapt 'io.kategory:kategory-annotations-processor:0.4.0' //optional
6161
...
6262
}
6363
```

deploy-scripts/deploy_release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ elif [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
1313
fail "Failed release deployment: was pull request."
1414
elif [ "$TRAVIS_BRANCH" != "$BRANCH" ]; then
1515
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
1717
fail "Failed release deployment: wrong version. Expected '$VERSION_NAME' to have pattern 'X.Y.Z'"
1818
else
1919
./gradlew uploadArchives bintrayUpload

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package definitions
22
GROUP=io.kategory
3-
VERSION_NAME=0.3.12
3+
VERSION_NAME=0.4.0
44
# Gradle options
55
org.gradle.jvmargs=-Xmx4g
66

0 commit comments

Comments
 (0)