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 Jan 26, 2024
1 parent 09b017f commit 3969d7d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## Version 0.9.4 *(2024-01-25)*
* [#398](https://github.com/jaredsburrows/gradle-license-plugin/pull/398) Fix exponential execution time for resolving complex dependencies
* [#312](https://github.com/jaredsburrows/gradle-license-plugin/pull/312) Quiet "Cannot resolve configuration" warnings

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

## Version 0.9.3 *(2023-06-20)*
* [#291](https://github.com/jaredsburrows/gradle-license-plugin/pull/291) Use ReaderFactory.newXmlReader to fix #275

Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Also, for Android projects the license HTML file will be copied to `<project>/sr

```kotlin
plugins {
id("com.jaredsburrows.license") version "0.9.3"
id("com.jaredsburrows.license") version "0.9.4"
}
```
</details>
Expand All @@ -40,7 +40,7 @@ buildscript {
}
dependencies {
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.3'
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.4'
}
}
Expand All @@ -49,15 +49,17 @@ apply plugin: 'com.jaredsburrows.license'
```
</details>

Release versions are available in the [Sonatype's release repository](https://repo1.maven.org/maven2/com/jaredsburrows/gradle-license-plugin/).
Release versions are available in
the [Sonatype's release repository](https://repo1.maven.org/maven2/com/jaredsburrows/gradle-license-plugin/)
and [here](https://central.sonatype.com/artifact/com.jaredsburrows/gradle-license-plugin).

**Snapshot:**
<details open>
<summary>with plugins { }</summary>

```kotlin
plugins {
id("com.jaredsburrows.license") version "0.9.4-SNAPSHOT"
id("com.jaredsburrows.license") version "0.9.5-SNAPSHOT"
}
```
</details>
Expand All @@ -73,7 +75,7 @@ buildscript {
}
dependencies {
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.4-SNAPSHOT'
classpath 'com.jaredsburrows:gradle-license-plugin:0.9.5-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.4-SNAPSHOT
VERSION_NAME=0.9.5-SNAPSHOT

POM_INCEPTION_YEAR=2016
POM_PACKAGING=jar
Expand Down

0 comments on commit 3969d7d

Please sign in to comment.