diff --git a/CHANGES.md b/CHANGES.md
index 67dc8e1940..2c2317a454 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -12,6 +12,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
## [Unreleased]
### Changes
- Bump default `greclipse` version to latest `4.39` -> `4.40`. ([#2989](https://github.com/diffplug/spotless/pull/2989))
+- Bump default `tabletest-formatter` version `1.1.1` -> `1.1.2`.
## [4.8.0] - 2026-06-29
### Added
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index b8807b1dd4..09c89370cb 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -55,7 +55,7 @@ ktfmt = "com.facebook:ktfmt:0.63"
palantir-java-format = "com.palantir.javaformat:palantir-java-format:1.1.0"
scalafmt-core = "org.scalameta:scalafmt-core_2.13:3.8.1"
sortpom-sorter = "com.github.ekryd.sortpom:sortpom-sorter:4.0.0"
-tabletest-formatter-core = "org.tabletest:tabletest-formatter-core:1.1.1"
+tabletest-formatter-core = "org.tabletest:tabletest-formatter-core:1.1.2"
zjsonpatch = "com.flipkart.zjsonpatch:zjsonpatch:0.4.16"
rewrite-recipe-migrate-java = "org.openrewrite.recipe:rewrite-migrate-java:3.36.0"
diff --git a/lib/src/main/java/com/diffplug/spotless/java/TableTestFormatterStep.java b/lib/src/main/java/com/diffplug/spotless/java/TableTestFormatterStep.java
index 14ab3b1f4d..3b8cc46f38 100644
--- a/lib/src/main/java/com/diffplug/spotless/java/TableTestFormatterStep.java
+++ b/lib/src/main/java/com/diffplug/spotless/java/TableTestFormatterStep.java
@@ -39,7 +39,7 @@ public final class TableTestFormatterStep implements Serializable {
private static final long serialVersionUID = 2L;
private static final String NAME = "tableTestFormatter";
private static final String MAVEN_COORDINATE = "org.tabletest:tabletest-formatter-core:";
- private static final String DEFAULT_VERSION = "1.1.1";
+ private static final String DEFAULT_VERSION = "1.1.2";
/** Default fallback indent style ({@code "space"}) for Java/Kotlin files. */
public static final String DEFAULT_INDENT_STYLE = "space";
diff --git a/plugin-gradle/CHANGES.md b/plugin-gradle/CHANGES.md
index 17f8167d02..416b09ee85 100644
--- a/plugin-gradle/CHANGES.md
+++ b/plugin-gradle/CHANGES.md
@@ -7,6 +7,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
- Prevent parallel Gradle input fingerprinting from failing when `toggleOffOn()` wraps a slow lazy formatter step with no matching target files. ([#2994](https://github.com/diffplug/spotless/pull/2994))
### Changes
- Bump default `greclipse` version to latest `4.39` -> `4.40`. ([#2989](https://github.com/diffplug/spotless/pull/2989))
+- Bump default `tabletest-formatter` version `1.1.1` -> `1.1.2`.
## [8.8.0] - 2026-06-29
### Added
diff --git a/plugin-gradle/README.md b/plugin-gradle/README.md
index 443acf7851..adbcffde00 100644
--- a/plugin-gradle/README.md
+++ b/plugin-gradle/README.md
@@ -441,7 +441,7 @@ spotless {
java {
tableTestFormatter()
// optional: you can specify a specific version
- tableTestFormatter('1.1.1')
+ tableTestFormatter('1.1.2')
```
@@ -618,7 +618,7 @@ spotless {
kotlin {
tableTestFormatter()
// optional: you can specify a specific version
- tableTestFormatter('1.1.1')
+ tableTestFormatter('1.1.2')
```
@@ -1328,7 +1328,7 @@ spotless {
target 'src/**/*.table'
tableTestFormatter()
// optional: you can specify a specific version
- tableTestFormatter('1.1.1')
+ tableTestFormatter('1.1.2')
}
}
```
diff --git a/plugin-maven/CHANGES.md b/plugin-maven/CHANGES.md
index a7e517860c..fbfe18b41f 100644
--- a/plugin-maven/CHANGES.md
+++ b/plugin-maven/CHANGES.md
@@ -5,6 +5,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
## [Unreleased]
### Changes
- Bump default `greclipse` version to latest `4.39` -> `4.40`. ([#2989](https://github.com/diffplug/spotless/pull/2989))
+- Bump default `tabletest-formatter` version `1.1.1` -> `1.1.2`.
## [3.8.0] - 2026-06-29
### Added
diff --git a/plugin-maven/README.md b/plugin-maven/README.md
index 1d0bf6d25f..bad5dcfdff 100644
--- a/plugin-maven/README.md
+++ b/plugin-maven/README.md
@@ -409,7 +409,7 @@ These mechanisms already exist for the Gradle plugin.
```xml
- 1.1.1
+ 1.1.2
```
@@ -545,7 +545,7 @@ Additionally, `editorConfigOverride` options will override what's supplied in `.
```xml
- 1.1.1
+ 1.1.2
```
@@ -1247,7 +1247,7 @@ When formatting shell scripts via `shfmt`, configure `shfmt` settings via `.edit
src/**/*.table
- 1.1.1
+ 1.1.2
diff --git a/testlib/src/test/java/com/diffplug/spotless/java/TableTestFormatterStepTest.java b/testlib/src/test/java/com/diffplug/spotless/java/TableTestFormatterStepTest.java
index 0299c1ad3b..f278a1d8a9 100644
--- a/testlib/src/test/java/com/diffplug/spotless/java/TableTestFormatterStepTest.java
+++ b/testlib/src/test/java/com/diffplug/spotless/java/TableTestFormatterStepTest.java
@@ -25,7 +25,7 @@
class TableTestFormatterStepTest extends ResourceHarness {
- private static final String VERSION = "1.1.1";
+ private static final String VERSION = "1.1.2";
@Test
void behavior() {