File tree Expand file tree Collapse file tree 8 files changed +11
-8
lines changed Expand file tree Collapse file tree 8 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1212## [ Unreleased]
1313### Fixed
1414* Node.JS-based tasks now work with the configuration cache ([ #2372 ] ( https://github.com/diffplug/spotless/issues/2372 ) )
15+ * Eclipse-based tasks can now handle parallel configuration ([ #2389 ] ( https://github.com/diffplug/spotless/issues/2389 ) )
1516
1617## [ 3.0.1] - 2025-01-07
1718### Fixed
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ spotless {
2222 }
2323 format ' dotfiles' , {
2424 target ' .gitignore' , ' .gitattributes' , ' .editorconfig'
25- indentWithSpaces (2 )
25+ leadingTabsToSpaces (2 )
2626 trimTrailingWhitespace()
2727 endWithNewline()
2828 }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Action<FreshMarkExtension> freshmarkSetup = {
1010 it. put(' yes' , ' :+1:' )
1111 it. put(' no' , ' :white_large_square:' )
1212 }
13- it. indentWithSpaces (2 )
13+ it. leadingTabsToSpaces (2 )
1414 it. endWithNewline()
1515}
1616
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ version = rootProject.spotlessChangelog.versionNext
77apply from : rootProject. file(' gradle/java-setup.gradle' )
88apply from : rootProject. file(' gradle/java-publish.gradle' )
99
10- String VER_SOLSTICE = ' 1.8.0 '
10+ String VER_SOLSTICE = ' 1.8.1 '
1111dependencies {
1212 api projects. lib
1313 // misc useful utilities
Original file line number Diff line number Diff line change 11/*
2- * Copyright 2016-2024 DiffPlug
2+ * Copyright 2016-2025 DiffPlug
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
@@ -131,8 +131,8 @@ public FormatterStep build() {
131131 }
132132 var classpath = new ArrayList <File >();
133133 var mavenDeps = new ArrayList <String >();
134- mavenDeps .add ("dev.equo.ide:solstice:1.8.0 " );
135- mavenDeps .add ("com.diffplug.durian:durian-swt.os:4.2.0 " );
134+ mavenDeps .add ("dev.equo.ide:solstice:1.8.1 " );
135+ mavenDeps .add ("com.diffplug.durian:durian-swt.os:4.3.1 " );
136136 mavenDeps .addAll (query .getJarsOnMavenCentral ());
137137 classpath .addAll (mavenProvisioner .provisionWithTransitives (false , mavenDeps ));
138138 classpath .addAll (query .getJarsNotOnMavenCentral ());
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
44
55## [ Unreleased]
66### Fixed
7- * Node.JS-based tasks now work with the configuration cache ([ #2372 ] ( https://github.com/diffplug/spotless/issues/2372 ) )
7+ * Node.JS-based tasks now work with the configuration cache ([ #2372 ] ( https://github.com/diffplug/spotless/issues/2372 ) )
8+ * Eclipse-based tasks can now handle parallel configuration ([ #2389 ] ( https://github.com/diffplug/spotless/issues/2389 ) )
89
910## [ 7.0.1] - 2025-01-07
1011### Fixed
Original file line number Diff line number Diff line change 33We adhere to the [ keepachangelog] ( https://keepachangelog.com/en/1.0.0/ ) format (starting after version ` 1.27.0 ` ).
44
55## [ Unreleased]
6+ * Eclipse-based tasks can now handle parallel configuration ([ #2389 ] ( https://github.com/diffplug/spotless/issues/2389 ) )
67
78## [ 2.44.1] - 2025-01-07
89### Fixed
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ plugins {
2222 // https://plugins.gradle.org/plugin/com.gradle.develocity
2323 id ' com.gradle.develocity' version ' 3.19'
2424 // https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
25- id ' dev.equo.ide' version ' 1.7.7 ' apply false
25+ id ' dev.equo.ide' version ' 1.7.8 ' apply false
2626}
2727
2828dependencyResolutionManagement {
You can’t perform that action at this time.
0 commit comments