Skip to content

Commit

Permalink
prepare next version
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredsburrows committed Apr 10, 2022
1 parent ce55fc1 commit af35efd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## Version 0.8.91 (2022-04-10)
* [#172](https://github.com/jaredsburrows/gradle-license-plugin/pull/172) Avoid processing *.aar dependencies which can not be parsed and cause gradle failures

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

## Version 0.8.90 (2020-12-30)
* [#140](https://github.com/jaredsburrows/gradle-license-plugin/pull/140) Added CSV report support
* [#134](https://github.com/jaredsburrows/gradle-license-plugin/pull/134) Add android library subproject dependencies to the report
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ buildscript {
}
dependencies {
classpath 'com.jaredsburrows:gradle-license-plugin:0.8.90'
classpath 'com.jaredsburrows:gradle-license-plugin:0.8.91'
}
}
Expand All @@ -41,7 +41,7 @@ buildscript {
}
dependencies {
classpath 'com.jaredsburrows:gradle-license-plugin:0.8.91-SNAPSHOT'
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.0-SNAPSHOT'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GROUP=com.jaredsburrows
POM_ARTIFACT_ID=gradle-license-plugin
VERSION_NAME=0.8.91-SNAPSHOT
VERSION_NAME=0.9.0-SNAPSHOT

POM_NAME=Gradle License Plugin
POM_DESCRIPTION=Gradle plugin that provides a task to generate a HTML license report of your project.
Expand Down
6 changes: 3 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
plugins {
id "com.gradle.enterprise" version "3.6.4"
id 'com.gradle.enterprise' version '3.6.4'
}

gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
publishAlways()
}
}
Expand Down

0 comments on commit af35efd

Please sign in to comment.