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 Jun 6, 2024
1 parent c0df28b commit 5fe4408
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## Version 0.9.8 *(2024-06-06)*
* [#496](https://github.com/jaredsburrows/gradle-license-plugin/pull/496) Make sure dependencies are sorted deterministically
* [#465](https://github.com/jaredsburrows/gradle-license-plugin/pull/465) Don't show versions in html
* [#464](https://github.com/jaredsburrows/gradle-license-plugin/pull/464) Add dark mode support for html
* [#463](https://github.com/jaredsburrows/gradle-license-plugin/pull/463) POM artifact resolution
* [#439](https://github.com/jaredsburrows/gradle-license-plugin/pull/439) Remove debug print
* [#433](https://github.com/jaredsburrows/gradle-license-plugin/pull/433) Sort project group order in HTML report using license keys
* [#431](https://github.com/jaredsburrows/gradle-license-plugin/pull/431) Sort set of licenses in HTML report

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

## Version 0.9.7 *(2024-01-30)*
* [#422](https://github.com/jaredsburrows/gradle-license-plugin/pull/422) Bump compileOnly AGP to 7.2.2

Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ Also, for Android projects the license HTML file will be copied to `<project>/sr

| 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+ |
| 0.9.5 | 7.0.2 | 3.6.4+ |
| 0.9.6 | 7.1.3 | 3.6.4+ |
| 0.9.7 | 7.2.2 | 3.6.4+ |
| <= 0.9.4 | <= 7.0.2 | 3.6.4+ |
| 0.9.5 | 7.0.2 | 3.6.4+ |
| 0.9.6 | 7.1.3 | 3.6.4+ |
| 0.9.7 | 7.2.2 | 3.6.4+ |
| 0.9.8 | 7.2.2 | 3.6.4+ |

## Download

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

```kotlin
plugins {
id('com.jaredsburrows.license') version '0.9.7'
id('com.jaredsburrows.license') version '0.9.8'
}
```
</details>
Expand All @@ -50,7 +51,7 @@ buildscript {
}
dependencies {
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.7'
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.8'
}
}
Expand All @@ -69,7 +70,7 @@ and [here](https://central.sonatype.com/artifact/com.jaredsburrows/gradle-licens

```kotlin
plugins {
id('com.jaredsburrows.license') version '0.9.8-SNAPSHOT'
id('com.jaredsburrows.license') version '0.9.9-SNAPSHOT'
}
```
</details>
Expand All @@ -85,7 +86,7 @@ buildscript {
}
dependencies {
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.8-SNAPSHOT'
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.9-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.8-SNAPSHOT
VERSION_NAME=0.9.9-SNAPSHOT

POM_INCEPTION_YEAR=2016
POM_PACKAGING=jar
Expand Down

0 comments on commit 5fe4408

Please sign in to comment.