Skip to content

Commit

Permalink
Merge pull request #86 from koral--/release-0210
Browse files Browse the repository at this point in the history
Release 0.2.10
  • Loading branch information
koral-- authored Oct 20, 2022
2 parents 59a456d + bab1e42 commit f956c1a
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 21 deletions.
52 changes: 35 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# 0.2.10 - 2022-10-20

- Update dependency versions
- Fix Change java/kotlin compile tasks destination directory retrieval on Kotlin
1.7 [#84](https://github.com/koral--/gradle-pitest-plugin/issue/84)

# 0.2.9 - 2022-01-30

- Update dependency versions
- Merge upstream changes 9efe3a585bc1307470102147d75fb9a0a29fae72

# 0.2.8 - 2021-08-22

- Update dependency versions
- Fix compatibility with Android Gradle Plugin 7 [#77](https://github.com/koral--/gradle-pitest-plugin/issue/77)
- Fix compatibility with Android Gradle Plugin
7 [#77](https://github.com/koral--/gradle-pitest-plugin/issue/77)

# 0.2.7 - 2021-03-09
- Update dependency versions
Expand Down Expand Up @@ -34,7 +43,7 @@

# 0.2.1 - 2019-05-04
- Add `excludeMockableAndroidJar` extension property
-- Fix compatibility with Robolectric [#44](https://github.com/koral--/gradle-pitest-plugin/issues/44)
-- Fix compatibility with Robolectric [#44](https://github.com/koral--/gradle-pitest-plugin/issues/44)
-- Fix compatibility with UnMock [#49](https://github.com/koral--/gradle-pitest-plugin/issues/49)

# 0.2.0 - 2019-05-03
Expand Down Expand Up @@ -93,36 +102,45 @@
- Fixed `NoSuchMethodError` on Gradle < 4.0 - [#11](https://github.com/koral--/gradle-pitest-plugin/issues/11)

# 0.0.9 - 2017-07-20
- `CharMatcher` replaced with regular expression to be compatible with Android Gradle Plugin 3.0.0 - [#9](https://github.com/koral--/gradle-pitest-plugin/pull/9)

- `CharMatcher` replaced with regular expression to be compatible with Android Gradle Plugin 3.0.0 - [#9](https://github.com/koral--/gradle-pitest-plugin/pull/9)

# 0.0.8 - 2017-05-11
- Compatibility with Robolectric improved - [#5](https://github.com/koral--/gradle-pitest-plugin/pull/5)
- Added flavoured app projects support - [#7](https://github.com/koral--/gradle-pitest-plugin/pull/7)

- Compatibility with Robolectric improved - [#5](https://github.com/koral--/gradle-pitest-plugin/pull/5)
- Added flavoured app projects support - [#7](https://github.com/koral--/gradle-pitest-plugin/pull/7)

# 0.0.7 - 2017-05-04
- Android Gradle plugin updated to 2.3.1
- Robolectric dependency replaced with mockable Android JAR, fixes [#4](https://github.com/koral--/gradle-pitest-plugin/issues/4)

- Android Gradle plugin updated to 2.3.1
- Robolectric dependency replaced with mockable Android JAR, fixes [#4](https://github.com/koral--/gradle-pitest-plugin/issues/4)

# 0.0.6 - 2017-04-01
- merged upstream changes d71835784d5ad55b1dbd8eef61cadbd72ec75465
- Android Gradle plugin updated to 2.3.0
- Gradle updated to 3.4.1

- merged upstream changes d71835784d5ad55b1dbd8eef61cadbd72ec75465
- Android Gradle plugin updated to 2.3.0
- Gradle updated to 3.4.1

# 0.0.5 - 2017-02-05
- Robolectric dependency updated to 7.1.0_r7
- merged upstream changes 14cf634c98590a9a9719a2284b52c7abef8f8f8f

- Robolectric dependency updated to 7.1.0_r7
- merged upstream changes 14cf634c98590a9a9719a2284b52c7abef8f8f8f

# 0.0.4 - 2016-10-26
- Dependencies updated
- Removed limitation that Android pitest plugin has to be applied after Android Gradle plugin

- Dependencies updated
- Removed limitation that Android pitest plugin has to be applied after Android Gradle plugin

# 0.0.3 - 2016-07-12
- Robolectric annotation format error fixed

- Robolectric annotation format error fixed

# 0.0.2 - 2016-07-06
- Maven central integration added

- Maven central integration added

# 0.0.1 - 2016-07-05
- Initial release

- Initial release

[Changelog of source project](https://github.com/szpak/gradle-pitest-plugin/blob/master/CHANGELOG.md)
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.9'
id 'pl.droidsonroids.pitest' version '0.2.10'
}
```

```kotlin
plugins {
id("pl.droidsonroids.pitest") version "0.2.9"
id("pl.droidsonroids.pitest") version "0.2.10"
}
```

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

Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ gradlePlugin {
pitestAggregator {
id = 'pl.droidsonroids.pitest.aggregator'
implementationClass = 'pl.droidsonroids.gradle.pitest.PitestAggregatorPlugin'
displayName = 'Android Gradle pitest aggregator plugin'
}
}
}
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.9
VERSION_NAME=0.2.10
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 f956c1a

Please sign in to comment.