Skip to content

Commit b21e32a

Browse files
authored
fix references to 9.0 (#34634)
2 parents 0cc7207 + bb6669d commit b21e32a

File tree

11 files changed

+80
-80
lines changed

11 files changed

+80
-80
lines changed

platforms/documentation/docs/src/docs/userguide/integration/tooling_api.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,6 @@ The rule for the lower bound is the following:
9494
- Gradle 5 and above require a minimum version of Java 8.
9595

9696
The Tooling API version is guaranteed to support running builds with all Gradle versions for the last five major releases.
97-
For example, the Tooling API 9.0 release is compatible with Gradle versions >= 4.0.
97+
For example, the Tooling API 9.0.0 release is compatible with Gradle versions >= 4.0.
9898
Besides, the Tooling API is guaranteed to be compatible with future Gradle releases for the current and the next major.
9999
This means, for example, that the 8.1 version of the Tooling API will be able to run Gradle 9.x builds and _might_ break with Gradle 10.

platforms/documentation/docs/src/docs/userguide/optimizing-builds/build-cache/common_caching_problems.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ A task depending on this task output would then not be able to load outputs from
233233
As described in the <<build_cache_concepts.adoc#stable_task_inputs,stable task inputs section>>, you can either make the task outputs repeatable or use input normalization.
234234
You already learned about the possibilities with <<build_cache_concepts.adoc#filter_runtime_classpath,configurable input normalization>>.
235235

236-
Tasks that produce archives (`tar`, `zip`) are <<working_with_files.adoc#sec:reproducible_archives,reproducible>> by default, starting with Gradle 9.0.
236+
Tasks that produce archives (`tar`, `zip`) are <<working_with_files.adoc#sec:reproducible_archives,reproducible>> by default, starting with Gradle 9.0.0.
237237
For earlier Gradle versions or if you want explicit configuration, you can make archives reproducible configuring a task in the following way:
238238

239239
====

platforms/documentation/docs/src/docs/userguide/optimizing-builds/configuration-cache/configuration_cache.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ This feature is _not enabled by default_ and has the following limitations:
6868
- <<config_cache:ide,IDE imports and syncs>> do not yet use the Configuration Cache.
6969
- Continuous Integration (CI) support is actively evolving.
7070
71-
Since Gradle 9.0 the Configuration Cache is the link:https://blog.gradle.org/road-to-configuration-cache#preferred-mode-of-execution[preferred mode of execution].
71+
Since Gradle 9.0.0 the Configuration Cache is the link:https://blog.gradle.org/road-to-configuration-cache#preferred-mode-of-execution[preferred mode of execution].
7272
====
7373

7474
[[config_cache:intro:how_does_it_work]]

platforms/documentation/docs/src/docs/userguide/optimizing-builds/configuration-cache/configuration_cache_enabling.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ To temporarily revert to the previous behavior, set the Gradle property `org.gra
353353
With the evolution of the Configuration Cache, Gradle may impose additional restrictions on build logic.
354354
To make adoption smoother, it is possible to _temporarily_ opt out of these restrictions in specific cases:
355355

356-
1. Starting with Gradle 9.0, it is an error to use any provider, except a provider of `BuildService` returned from
356+
1. Starting with Gradle 9.0.0, it is an error to use any provider, except a provider of `BuildService` returned from
357357
link:{javadocPath}/org/gradle/api/services/BuildServiceRegistry.html#registerIfAbsent(java.lang.String,java.lang.Class,org.gradle.api.Action)[`BuildServiceRegistry.registerIfAbsent`]
358358
or
359359
link:{javadocPath}/org/gradle/api/services/BuildServiceRegistration.html#getService()[`BuildServiceRegistration.getService`]

platforms/documentation/docs/src/docs/userguide/reference/gradle-types/working_with_files.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1024,7 +1024,7 @@ Reproducing the same byte-for-byte archive generally poses some challenges since
10241024
Each time a ZIP, TAR, JAR, WAR or EAR is built from source, the order of the files inside the archive may change.
10251025
Files on disk can also have different timestamps or permissions depending on the environment.
10261026

1027-
Starting with Gradle 9.0, all link:{groovyDslPath}/org.gradle.api.tasks.bundling.AbstractArchiveTask.html[AbstractArchiveTask] (e.g. `Jar`, `Zip`) tasks produce reproducible archives by default:
1027+
Starting with Gradle 9.0.0, all link:{groovyDslPath}/org.gradle.api.tasks.bundling.AbstractArchiveTask.html[AbstractArchiveTask] (e.g. `Jar`, `Zip`) tasks produce reproducible archives by default:
10281028

10291029
- File order in the archive is deterministic
10301030
- Files have fixed timestamps (exact values depend on the archive type)

platforms/documentation/docs/src/docs/userguide/reference/structuring-builds/multi_project_builds.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ NOTE: Setting the link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.ap
130130

131131
When you include a subproject in your `settings.gradle(.kts)` file, Gradle expects that the associated directory for that project exists and is writable.
132132

133-
WARNING: Starting with **Gradle 9.0**, this is enforced strictly: **If a project directory is missing or read-only, the build will fail.** This replaces earlier behavior where Gradle would silently allow missing project directories.
133+
WARNING: Starting with **Gradle 9.0.0**, this is enforced strictly: **If a project directory is missing or read-only, the build will fail.** This replaces earlier behavior where Gradle would silently allow missing project directories.
134134

135135
Here's how you can create a missing directory at configuration time:
136136

platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Beta and RC versions may or may not work.
101101
| 1.9.24 | 8.10 | 1.8
102102
| 2.0.20 | 8.11 | 1.8
103103
| 2.0.21 | 8.12 | 1.8
104-
| 2.2.0 | 9.0 | 2.2
104+
| 2.2.0 | 9.0.0 | 2.2
105105
|===
106106

107107
== Groovy

platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_major_version_9.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ If you are already applying one of those, no further action is needed.
324324

325325
NOTE: This change may affect existing builds that relied on the previous behavior of archive tasks, where file order was not deterministic, and file timestamps and permissions were taken from the file system.
326326

327-
In Gradle 9.0, the default behavior of archive tasks (such as `Jar`, `Ear`, `War`, `Zip`, and `AbstractArchiveTask`) has changed to produce reproducible archives by default.
327+
In Gradle 9.0.0, the default behavior of archive tasks (such as `Jar`, `Ear`, `War`, `Zip`, and `AbstractArchiveTask`) has changed to produce reproducible archives by default.
328328
That means that:
329329

330330
- File order in the archive is now deterministic.

platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ Use the `archiveAppendix`, `archiveFileName` , `archiveFile`, `archiveBaseName`,
221221
==== AbstractCompile API Deprecations
222222

223223
The previously deprecated `destinationDir` property of the `AbstractCompile` remains deprecated, and will now emit a deprecation warning upon use.
224-
It is now scheduled for removal in Gradle 9.0.
224+
It is now scheduled for removal in Gradle 9.0.0.
225225
Use the `destinationDirectory` property instead.
226226

227227
==== ResolvedComponentResult API Cleanup
@@ -675,7 +675,7 @@ No changes are required for projects that already apply the
675675

676676
==== Upload Task should not be used
677677

678-
The `Upload` task remains deprecated and is now scheduled for removal in Gradle 9.0.
678+
The `Upload` task remains deprecated and is now scheduled for removal in Gradle 9.0.0.
679679
Although this type remains, it is no longer functional and will throw an exception upon running.
680680
It is preserved solely to avoid breaking plugins.
681681
Use the tasks in the `maven-publish` or `ivy-publish` plugins instead.
@@ -881,7 +881,7 @@ See more details about toolchain configuration in the <<toolchains#sec:configuri
881881
[[org_gradle_util_reports_deprecations_7]]
882882
==== Deprecated members of the `org.gradle.util` package now report their deprecation
883883

884-
These members will be removed in Gradle 9.0.
884+
These members will be removed in Gradle 9.0.0.
885885

886886
* `ClosureBackedAction`
887887
* `CollectionUtils`
@@ -1303,7 +1303,7 @@ If the set of attributes is shared across configurations, consider adding an add
13031303
[[for_use_at_configuration_time_deprecation]]
13041304
==== `Provider#forUseAtConfigurationTime()` has been deprecated
13051305

1306-
link:{javadocPath}/org/gradle/api/provider/Provider.html#forUseAtConfigurationTime--[Provider#forUseAtConfigurationTime] is now deprecated and scheduled for removal in Gradle 9.0.
1306+
link:{javadocPath}/org/gradle/api/provider/Provider.html#forUseAtConfigurationTime--[Provider#forUseAtConfigurationTime] is now deprecated and scheduled for removal in Gradle 9.0.0.
13071307
Clients should simply remove the call.
13081308

13091309
The call was mandatory on providers of external values such as link:{groovyDslPath}/org.gradle.api.provider.ProviderFactory.html#org.gradle.api.provider.ProviderFactory:systemProperty(java.lang.String)[system properties], link:{groovyDslPath}/org.gradle.api.provider.ProviderFactory.html#org.gradle.api.provider.ProviderFactory:environmentVariable(java.lang.String)[environment variables],

0 commit comments

Comments
 (0)