Skip to content

Commit

Permalink
prepare next development version
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredsburrows committed Jan 30, 2024
1 parent d93146a commit 122179e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## Version 0.9.5 *(2024-01-30)*
* [#465](https://github.com/jaredsburrows/gradle-license-plugin/pull/416) Bump compileOnly AGP to 7.0.4
* [#415](https://github.com/jaredsburrows/gradle-license-plugin/pull/415) Bump compileOnly AGP to 4.2.2
* [#413](https://github.com/jaredsburrows/gradle-license-plugin/pull/413) Bump compileOnly AGP to 4.0.2
* [#411](https://github.com/jaredsburrows/gradle-license-plugin/pull/411) Update dialog code to remove warning
* [#407](https://github.com/jaredsburrows/gradle-license-plugin/pull/407) Run tests against Android 34
* [#406](https://github.com/jaredsburrows/gradle-license-plugin/pull/406) Make sure HTML reports are valid
* [#402](https://github.com/jaredsburrows/gradle-license-plugin/pull/402) Add keys for list of known licenses

Many thanks to
[@monae](https://github.com/monae)
for the code contributions!

## Version 0.9.4 *(2024-01-25)*
* [#398](https://github.com/jaredsburrows/gradle-license-plugin/pull/398) Fix exponential execution time for resolving complex dependencies
* [#312](https://github.com/jaredsburrows/gradle-license-plugin/pull/312) Quiet "Cannot resolve configuration" warnings
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Also, for Android projects the license HTML file will be copied to `<project>/sr

## Compatibility Matrix

| Plugin Version | Minimum [AGP](https://developer.android.com/build/releases/gradle-plugin) Version |
|----------------|----------------------------------------------------------------------------------:|
| <= 0.9.4 | 3.6.4+ |
| Plugin Version | Minimum [Gradle](https://gradle.org/) Version | Minimum [AGP](https://developer.android.com/build/releases/gradle-plugin) Version |
|----------------|-----------------------------------------------|----------------------------------------------------------------------------------:|
| <= 0.9.4 | <= 7.0.2 | 3.6.4+ |

## Download

Expand All @@ -30,7 +30,7 @@ Also, for Android projects the license HTML file will be copied to `<project>/sr

```kotlin
plugins {
id("com.jaredsburrows.license") version "0.9.4"
id("com.jaredsburrows.license") version "0.9.5"
}
```
</details>
Expand All @@ -47,7 +47,7 @@ buildscript {
}
dependencies {
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.4'
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.5'
}
}
Expand All @@ -66,7 +66,7 @@ and [here](https://central.sonatype.com/artifact/com.jaredsburrows/gradle-licens

```kotlin
plugins {
id("com.jaredsburrows.license") version "0.9.5-SNAPSHOT"
id("com.jaredsburrows.license") version "0.9.6-SNAPSHOT"
}
```
</details>
Expand All @@ -82,7 +82,7 @@ buildscript {
}
dependencies {
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.5-SNAPSHOT'
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.6-SNAPSHOT'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SONATYPE_AUTOMATIC_RELEASE=true
RELEASE_SIGNING_ENABLED=true

GROUP=com.jaredsburrows
VERSION_NAME=0.9.5-SNAPSHOT
VERSION_NAME=0.9.6-SNAPSHOT

POM_INCEPTION_YEAR=2016
POM_PACKAGING=jar
Expand Down

0 comments on commit 122179e

Please sign in to comment.