Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ This document is intended for Spotless developers.
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (starting after version `1.27.0`).

## [Unreleased]
### Changes
* Bump default `google-java-format` version to latest `1.28.0` -> `1.29.0`. ([#2661](https://github.com/diffplug/spotless/pull/2661))

## [4.0.0] - 2025-09-24
### Changes
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ dependencies {
gherkinCompileOnly 'io.cucumber:gherkin-utils:9.2.0'
gherkinCompileOnly 'org.slf4j:slf4j-api:2.0.17'
// googleJavaFormat
googleJavaFormatCompileOnly 'com.google.googlejavaformat:google-java-format:1.28.0'
googleJavaFormatCompileOnly 'com.google.googlejavaformat:google-java-format:1.29.0'
// gson
gsonCompileOnly 'com.google.code.gson:gson:2.13.2'
// jackson
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private static FormatterStep createInternally(String name, String groupArtifact,
.addMin(11, "1.8") // we only support google-java-format >= 1.8 due to api changes
.addMin(16, "1.10.0") // java 16 requires at least 1.10.0 due to jdk api changes in JavaTokenizer
.addMin(21, "1.17.0") // java 21 requires at least 1.17.0 due to https://github.com/google/google-java-format/issues/898
.add(17, "1.28.0"); // default version
.add(21, "1.29.0"); // default version

public static String defaultGroupArtifact() {
return MAVEN_COORDINATE;
Expand Down
2 changes: 2 additions & 0 deletions plugin-gradle/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (starting after version `3.27.0`).

## [Unreleased]
### Changes
* Bump default `google-java-format` version to latest `1.28.0` -> `1.29.0`. ([#2661](https://github.com/diffplug/spotless/pull/2661))

## [8.0.0] - 2025-09-24
### Changed
Expand Down
2 changes: 2 additions & 0 deletions plugin-maven/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (starting after version `1.27.0`).

## [Unreleased]
### Changes
* Bump default `google-java-format` version to latest `1.28.0` -> `1.29.0`. ([#2661](https://github.com/diffplug/spotless/pull/2661))

## [3.0.0] - 2025-09-24
### Changes
Expand Down
Loading