Skip to content

Commit 5fe4408

Browse files
committed
prepare next development version
1 parent c0df28b commit 5fe4408

3 files changed

Lines changed: 25 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Change Log
22

3+
## Version 0.9.8 *(2024-06-06)*
4+
* [#496](https://github.com/jaredsburrows/gradle-license-plugin/pull/496) Make sure dependencies are sorted deterministically
5+
* [#465](https://github.com/jaredsburrows/gradle-license-plugin/pull/465) Don't show versions in html
6+
* [#464](https://github.com/jaredsburrows/gradle-license-plugin/pull/464) Add dark mode support for html
7+
* [#463](https://github.com/jaredsburrows/gradle-license-plugin/pull/463) POM artifact resolution
8+
* [#439](https://github.com/jaredsburrows/gradle-license-plugin/pull/439) Remove debug print
9+
* [#433](https://github.com/jaredsburrows/gradle-license-plugin/pull/433) Sort project group order in HTML report using license keys
10+
* [#431](https://github.com/jaredsburrows/gradle-license-plugin/pull/431) Sort set of licenses in HTML report
11+
12+
Many thanks to
13+
[@monae](https://github.com/monae)
14+
[@t-beckmann](https://github.com/t-beckmann)
15+
[@francescocervone](https://github.com/francescocervone)
16+
for the code contributions!
17+
318
## Version 0.9.7 *(2024-01-30)*
419
* [#422](https://github.com/jaredsburrows/gradle-license-plugin/pull/422) Bump compileOnly AGP to 7.2.2
520

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ Also, for Android projects the license HTML file will be copied to `<project>/sr
1919

2020
| Plugin Version | Minimum [Gradle](https://gradle.org/) Version | Minimum [AGP](https://developer.android.com/build/releases/gradle-plugin) Version |
2121
|---------------:|----------------------------------------------:|----------------------------------------------------------------------------------:|
22-
| <= 0.9.4 | <= 7.0.2 | 3.6.4+ |
23-
| 0.9.5 | 7.0.2 | 3.6.4+ |
24-
| 0.9.6 | 7.1.3 | 3.6.4+ |
25-
| 0.9.7 | 7.2.2 | 3.6.4+ |
22+
| <= 0.9.4 | <= 7.0.2 | 3.6.4+ |
23+
| 0.9.5 | 7.0.2 | 3.6.4+ |
24+
| 0.9.6 | 7.1.3 | 3.6.4+ |
25+
| 0.9.7 | 7.2.2 | 3.6.4+ |
26+
| 0.9.8 | 7.2.2 | 3.6.4+ |
2627

2728
## Download
2829

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

3435
```kotlin
3536
plugins {
36-
id('com.jaredsburrows.license') version '0.9.7'
37+
id('com.jaredsburrows.license') version '0.9.8'
3738
}
3839
```
3940
</details>
@@ -50,7 +51,7 @@ buildscript {
5051
}
5152
5253
dependencies {
53-
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.7'
54+
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.8'
5455
}
5556
}
5657
@@ -69,7 +70,7 @@ and [here](https://central.sonatype.com/artifact/com.jaredsburrows/gradle-licens
6970

7071
```kotlin
7172
plugins {
72-
id('com.jaredsburrows.license') version '0.9.8-SNAPSHOT'
73+
id('com.jaredsburrows.license') version '0.9.9-SNAPSHOT'
7374
}
7475
```
7576
</details>
@@ -85,7 +86,7 @@ buildscript {
8586
}
8687
8788
dependencies {
88-
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.8-SNAPSHOT'
89+
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.9-SNAPSHOT'
8990
}
9091
}
9192

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SONATYPE_AUTOMATIC_RELEASE=true
33
RELEASE_SIGNING_ENABLED=true
44

55
GROUP=com.jaredsburrows
6-
VERSION_NAME=0.9.8-SNAPSHOT
6+
VERSION_NAME=0.9.9-SNAPSHOT
77

88
POM_INCEPTION_YEAR=2016
99
POM_PACKAGING=jar

0 commit comments

Comments
 (0)