diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a905e8b..24bc204b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## [1.11.0] - 2024-03-29 + +**New** + +- `LicenseeTask` exposes `jsonOutput` and `validationOutput` properties which are providers of the generated file that you can use to copy elsewhere or bundle into binaries. + +**Changed** + +- Invalid SPDX identifiers passed to `allow` will now throw an exception. +- Update SPDX database to version 3.23 (2024-02-08). + + ## [1.10.0] - 2024-03-28 **New** @@ -194,7 +206,8 @@ Initial release. -[Unreleased]: https://github.com/cashapp/licensee/compare/1.10.0...HEAD +[Unreleased]: https://github.com/cashapp/licensee/compare/1.11.0...HEAD +[1.11.0]: https://github.com/cashapp/licensee/releases/tag/1.11.0 [1.10.0]: https://github.com/cashapp/licensee/releases/tag/1.10.0 [1.9.1]: https://github.com/cashapp/licensee/releases/tag/1.9.1 [1.9.0]: https://github.com/cashapp/licensee/releases/tag/1.9.0 diff --git a/README.md b/README.md index 664c9b19..515224ec 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'app.cash.licensee:licensee-gradle-plugin:1.10.0' + classpath 'app.cash.licensee:licensee-gradle-plugin:1.11.0' } } @@ -86,7 +86,7 @@ buildscript { } } dependencies { - classpath 'app.cash.licensee:licensee-gradle-plugin:1.11.0-SNAPSHOT' + classpath 'app.cash.licensee:licensee-gradle-plugin:1.12.0-SNAPSHOT' } } diff --git a/gradle.properties b/gradle.properties index 73987044..f01a3d6c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ GROUP=app.cash.licensee # HEY! If you change the major version here be sure to update release.yaml doc target folder! -VERSION_NAME=1.11.0-SNAPSHOT +VERSION_NAME=1.11.0 SONATYPE_AUTOMATIC_RELEASE=true SONATYPE_HOST=DEFAULT