Skip to content

Commit

Permalink
v2.4.2
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Saveau <[email protected]>
  • Loading branch information
SUPERCILEX committed Sep 27, 2019
1 parent 9419ba4 commit 7e8d305
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ jobs:
echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd\n504667f4c0de7af1a06de9f4b1727b84351f2910" > "$ANDROID_HOME/licenses/android-sdk-preview-license"
- run:
name: Setup environment
command: chmod +x gradlew
command: |
chmod +x gradlew
echo "gradle.publish.key=$PUBLISH_KEY" > $HOME/.gradle/gradle.properties
echo "gradle.publish.secret=$PUBLISH_SECRET" >> $HOME/.gradle/gradle.properties
- run:
name: Build
command: ./gradlew clean ciBuild --stacktrace
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ through the `plugins {}` DSL:
```kt
plugins {
id("com.android.application")
id("com.github.triplet.play") version "2.4.1"
id("com.github.triplet.play") version "2.4.2"
}
```

Expand All @@ -121,7 +121,7 @@ plugins {
```groovy
plugins {
id 'com.android.application'
id 'com.github.triplet.play' version '2.4.1'
id 'com.github.triplet.play' version '2.4.2'
}
```

Expand Down
2 changes: 1 addition & 1 deletion plugin/play/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ tasks.named("test") {
}

group = "com.github.triplet.gradle"
version = "2.5.0-SNAPSHOT"
version = "2.4.2"

gradlePlugin {
plugins.create("play") {
Expand Down

0 comments on commit 7e8d305

Please sign in to comment.