Skip to content

Commit

Permalink
Release 0.12.1 (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelcarmena authored Apr 28, 2021
1 parent c51e484 commit 624b340
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish_arrow-integrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ jobs:
echo "LATEST_PUBLISHED_VERSION: $LATEST_PUBLISHED_VERSION"
echo "RELEASE_VERSION: $RELEASE_VERSION"
echo "NEW_RELEASE_VERSION_EXISTS: $NEW_RELEASE_VERSION_EXISTS"
- name: "Update version when release"
- name: "Update configuration when release"
if: env.NEW_RELEASE_VERSION_EXISTS == '1'
run: perl -pe "s/^VERSION_NAME=.*/VERSION_NAME=$RELEASE_VERSION/g" -i $BASEDIR/gradle.properties
run: |
perl -pe "s/^VERSION_NAME=.*/VERSION_NAME=$RELEASE_VERSION/g" -i $BASEDIR/gradle.properties
perl -pe "s/^org.gradle.parallel=.*/org.gradle.parallel=false/g" -i $BASEDIR/gradle.properties
- name: "Publish"
run: |
./gradlew publish
Expand Down
19 changes: 9 additions & 10 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Package definitions
GROUP=io.arrow-kt
VERSION_NAME=0.12.1-SNAPSHOT
LATEST_VERSION=0.12.0
VERSION_NAME=0.13.0-SNAPSHOT
LATEST_VERSION=0.12.1
# Versions
ANIMALS_SNIFFER_VERSION=1.5.0
ARROW_VERSION=0.12.0
ARROW_VERSION=0.12.1
DOKKA_VERSION=0.10.0
JACKSON_MODULE_KOTLIN_VERSION=2.12.3
JUNIT_VINTAGE_VERSION=5.6.3
Expand Down Expand Up @@ -32,7 +32,7 @@ POM_DEVELOPER_NAME=The Arrow Authors

# Gradle options
org.gradle.jvmargs=-Xmx4g
org.gradle.parallel=false
org.gradle.parallel=true
# To disable publishing of sha-512 checksums for maven-metadata.xml files
systemProp.org.gradle.internal.publish.checksums.insecure=true

Expand All @@ -43,9 +43,8 @@ kotlin.incremental=true
kotlintest.parallelism=1
kotlin.stdlib.default.dependency=false

# TODO
COMMON_SETUP=https://raw.githubusercontent.com/arrow-kt/arrow/0.12.0/arrow-libs/gradle/setup.gradle
ROOT_PROJECT=https://raw.githubusercontent.com/arrow-kt/arrow/0.12.0/arrow-libs/gradle/main.gradle
SUB_PROJECT=https://raw.githubusercontent.com/arrow-kt/arrow/0.12.0/arrow-libs/gradle/subproject.gradle
PUBLICATION=https://raw.githubusercontent.com/arrow-kt/arrow/main/arrow-libs/gradle/publication.gradle
ANIMALSNIFFER=https://raw.githubusercontent.com/arrow-kt/arrow/0.12.0/arrow-libs/gradle/animalsniffer.gradle
COMMON_SETUP=https://raw.githubusercontent.com/arrow-kt/arrow/0.12.1/arrow-libs/gradle/setup.gradle
ROOT_PROJECT=https://raw.githubusercontent.com/arrow-kt/arrow/0.12.1/arrow-libs/gradle/main.gradle
SUB_PROJECT=https://raw.githubusercontent.com/arrow-kt/arrow/0.12.1/arrow-libs/gradle/subproject.gradle
PUBLICATION=https://raw.githubusercontent.com/arrow-kt/arrow/0.12.1/arrow-libs/gradle/publication.gradle
ANIMALSNIFFER=https://raw.githubusercontent.com/arrow-kt/arrow/0.12.1/arrow-libs/gradle/animalsniffer.gradle

0 comments on commit 624b340

Please sign in to comment.