Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.0.1"
".": "3.1.0"
}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 3.1.0 (2025-11-02)

## What's Changed
* chore(master): release 3.0.2-SNAPSHOT by @github-actions[bot] in https://github.com/jk1/Gradle-License-Report/pull/357
* fix: align normalizer rules between SPDX+default; fixing minor attribution issues by @chadlwilson in https://github.com/jk1/Gradle-License-Report/pull/360
* feat: add GPL+Universal FOSS exception/FSL/Bouncy Castle/MIT-0 normalising rules by @chadlwilson in https://github.com/jk1/Gradle-License-Report/pull/359
* Make markdown reporter more diff friendly by @suniala in https://github.com/jk1/Gradle-License-Report/pull/326
* #322 Pick the best matching pom.xml in the jar, instead of randomly choosing the first one. by @AlexanderBartash in https://github.com/jk1/Gradle-License-Report/pull/323

## New Contributors
* @suniala made their first contribution in https://github.com/jk1/Gradle-License-Report/pull/326
* @AlexanderBartash made their first contribution in https://github.com/jk1/Gradle-License-Report/pull/323

**Full Changelog**: https://github.com/jk1/Gradle-License-Report/compare/v3.0.1...v3.1.0

## 3.0.1 (2025-11-01)

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add this to your `build.gradle` file for Gradle 7+:

```groovy
plugins {
id 'com.github.jk1.dependency-license-report' version '3.0.2-SNAPSHOT' // x-release-please-version
id 'com.github.jk1.dependency-license-report' version '3.1.0' // x-release-please-version
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.github.jk1'
version = '3.0.2-SNAPSHOT' // x-release-please-version
version = '3.1.0' // x-release-please-version
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")

tasks.withType(AbstractCompile).configureEach {
Expand Down
2 changes: 1 addition & 1 deletion samples/groovy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.github.jk1.dependency-license-report:com.github.jk1.dependency-license-report.gradle.plugin:3.0.2-SNAPSHOT' // x-release-please-version
classpath 'com.github.jk1.dependency-license-report:com.github.jk1.dependency-license-report.gradle.plugin:3.1.0' // x-release-please-version
}
}

Expand Down
2 changes: 1 addition & 1 deletion samples/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import com.github.jk1.license.filter.LicenseBundleNormalizer
import com.github.jk1.license.filter.ExcludeDependenciesWithoutArtifactsFilter

plugins {
id("com.github.jk1.dependency-license-report") version "3.0.2-SNAPSHOT" // x-release-please-version
id("com.github.jk1.dependency-license-report") version "3.1.0" // x-release-please-version
id("java")
}

Expand Down