Skip to content

Commit c3ea070

Browse files
author
runner
committed
Published release/1.7.1
1 parent 5ade001 commit c3ea070

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [1.7.1] - 2023-12-08
810
### Fixed
911
- Remove `Provider.forUseAtConfigurationTime method has been deprecated` warnings in recent versions of Gradle. ([#38](https://github.com/diffplug/blowdryer/pull/38))
1012

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ output = [
99
].join('\n');
1010
-->
1111
[![Gradle plugin](https://img.shields.io/badge/gradle_plugin-com.diffplug.blowdryer-blue.svg)](https://plugins.gradle.org/plugin/com.diffplug.blowdryer)
12-
[![Changelog](https://img.shields.io/badge/changelog-1.7.0-blue.svg)](CHANGELOG.md)
12+
[![Changelog](https://img.shields.io/badge/changelog-1.7.1-blue.svg)](CHANGELOG.md)
1313
[![Maven central](https://img.shields.io/badge/mavencentral-here-blue.svg)](https://search.maven.org/classic/#search%7Cgav%7C1%7Cg%3A%22com.diffplug%22%20AND%20a%3A%22blowdryer%22)
14-
[![Javadoc](https://img.shields.io/badge/javadoc-here-blue.svg)](https://javadoc.io/doc/com.diffplug/blowdryer/1.7.0/index.html)
14+
[![Javadoc](https://img.shields.io/badge/javadoc-here-blue.svg)](https://javadoc.io/doc/com.diffplug/blowdryer/1.7.1/index.html)
1515
<!---freshmark /shields -->
1616

1717
If you have multiple loosely-related gradle projects in separate repositories, then you probably have these problems:
@@ -39,7 +39,7 @@ Then, in the `settings.gradle` for the project that you want to suck these into,
3939

4040
```gradle
4141
plugins {
42-
id 'com.diffplug.blowdryerSetup' version '1.7.0'
42+
id 'com.diffplug.blowdryerSetup' version '1.7.1'
4343
}
4444
4545
blowdryerSetup {
@@ -156,7 +156,7 @@ We recommend that your `settings.gradle` should look like this:
156156

157157
```gradle
158158
plugins {
159-
id 'com.diffplug.blowdryerSetup' version '1.7.0'
159+
id 'com.diffplug.blowdryerSetup' version '1.7.1'
160160
id 'acme.java' version '1.0.0' apply false
161161
id 'acme.kotlin' version '2.0.0' apply false
162162
}
@@ -173,7 +173,7 @@ First note that every plugin has `apply false` except for `com.diffplug.blowdrye
173173
The second thing to note is `setPluginsBlockTo { it.file('plugin.versions') }`. That means that if you go to `github.com/acme/blowdryer-acme` and then open the `v1.4.5` tab and then go into the `src/main/resources` folder, you will find a file called `plugin.versions`. And the content of that file will be
174174

175175
```gradle
176-
id 'com.diffplug.blowdryerSetup' version '1.7.0'
176+
id 'com.diffplug.blowdryerSetup' version '1.7.1'
177177
id 'acme.java' version '1.0.0' apply false
178178
id 'acme.kotlin' version '2.0.0' apply false
179179
```
@@ -242,7 +242,7 @@ The Gradle Kotlin DSL doesn't play well with the name-based extension object tha
242242
```kotlin
243243
// settings.gradle.kts
244244
plugins {
245-
id("com.diffplug.blowdryerSetup") version "1.7.0"
245+
id("com.diffplug.blowdryerSetup") version "1.7.1"
246246
}
247247
import com.diffplug.blowdryer.BlowdryerSetup
248248
import com.diffplug.blowdryer.BlowdryerSetup.GitAnchorType
@@ -267,9 +267,9 @@ somePlugin {
267267

268268
### Other packaging options
269269

270-
[`Blowdryer.immutableUrl`](https://javadoc.io/static/com.diffplug/blowdryer/1.7.0/com/diffplug/blowdryer/Blowdryer.html#immutableUrl-java.lang.String-) returns a `File` containing the downloaded content of the given URL. It's on you to guarantee that the content of that URL is immutable.
270+
[`Blowdryer.immutableUrl`](https://javadoc.io/static/com.diffplug/blowdryer/1.7.1/com/diffplug/blowdryer/Blowdryer.html#immutableUrl-java.lang.String-) returns a `File` containing the downloaded content of the given URL. It's on you to guarantee that the content of that URL is immutable.
271271

272-
When you setup the Blowdryer plugin in your `settings.gradle`, you're telling Blowdryer what URL scheme to use when resolving a call to [`Blowdryer.file`](https://javadoc.io/static/com.diffplug/blowdryer/1.7.0/com/diffplug/blowdryer/Blowdryer.html#file-java.lang.String-), for example:
272+
When you setup the Blowdryer plugin in your `settings.gradle`, you're telling Blowdryer what URL scheme to use when resolving a call to [`Blowdryer.file`](https://javadoc.io/static/com.diffplug/blowdryer/1.7.1/com/diffplug/blowdryer/Blowdryer.html#file-java.lang.String-), for example:
273273

274274
```java
275275
//blowdryer {

0 commit comments

Comments
 (0)