Skip to content

Commit

Permalink
Merge pull request #103 from koral--/maintenance
Browse files Browse the repository at this point in the history
Replace dependabot with renovate
  • Loading branch information
koral-- authored Nov 6, 2023
2 parents 708b169 + 340d27c commit d0ad872
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
8 changes: 0 additions & 8 deletions .dependabot/config.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"labels": ["dependencies"],
"includeForks": true
}
2 changes: 1 addition & 1 deletion .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ blocks:
commands:
- checkout
- sem-version java 17
- 'wget https://dl.google.com/android/repository/commandlinetools-linux-9123335_latest.zip -O ~/android-commandline-tools.zip'
- 'wget https://dl.google.com/android/repository/commandlinetools-linux-10406996_latest.zip -O ~/android-commandline-tools.zip'
- mkdir -p ~/android-sdk/
- unzip ~/android-commandline-tools.zip -d ~/android-sdk/cmdline-tools/
- mv ~/android-sdk/cmdline-tools/cmdline-tools/ ~/android-sdk/cmdline-tools/latest
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.2.14 - 2023-11-06

- Update dependency versions
- Merge upstream changes 3752a463b71648cec3c36a6d52a2f81d366d881c
- Add mockable Android JAR dependencies automatically [#91](https://github.com/koral--/gradle-pitest-plugin/issue/91)
- Ignore dependencies without version when copying unit test runtime classpath [#100](https://github.com/koral--/gradle-pitest-plugin/issue/100)
- Copy runtime classpath only if jetifier is disabled [#99](https://github.com/koral--/gradle-pitest-plugin/issue/99)

# 0.2.13 - 2023-09-01

- Extend pitest test runtime classpath [#95](https://github.com/koral--/gradle-pitest-plugin/issue/95)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ which supports Android gradle projects.

```groovy
plugins {
id 'pl.droidsonroids.pitest' version '0.2.12'
id 'pl.droidsonroids.pitest' version '0.2.14'
}
```

```kotlin
plugins {
id("pl.droidsonroids.pitest") version "0.2.12"
id("pl.droidsonroids.pitest") version "0.2.14"
}
```

Expand All @@ -25,7 +25,7 @@ buildscript {
google()
}
dependencies {
classpath("pl.droidsonroids.gradle:gradle-pitest-plugin:0.2.12")
classpath("pl.droidsonroids.gradle:gradle-pitest-plugin:0.2.14")
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=0.2.13
VERSION_NAME=0.2.14
GROUP=pl.droidsonroids.gradle
POM_DESCRIPTION=Gradle plugin for PIT Mutation Testing in Android projects
POM_URL=https://github.com/koral--/gradle-pitest-plugin
Expand Down

0 comments on commit d0ad872

Please sign in to comment.