File tree 8 files changed +11
-8
lines changed
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 (
12
12
## [ Unreleased]
13
13
### Fixed
14
14
* 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 ) )
15
16
16
17
## [ 3.0.1] - 2025-01-07
17
18
### Fixed
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ spotless {
22
22
}
23
23
format ' dotfiles' , {
24
24
target ' .gitignore' , ' .gitattributes' , ' .editorconfig'
25
- indentWithSpaces (2 )
25
+ leadingTabsToSpaces (2 )
26
26
trimTrailingWhitespace()
27
27
endWithNewline()
28
28
}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Action<FreshMarkExtension> freshmarkSetup = {
10
10
it. put(' yes' , ' :+1:' )
11
11
it. put(' no' , ' :white_large_square:' )
12
12
}
13
- it. indentWithSpaces (2 )
13
+ it. leadingTabsToSpaces (2 )
14
14
it. endWithNewline()
15
15
}
16
16
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ version = rootProject.spotlessChangelog.versionNext
7
7
apply from : rootProject. file(' gradle/java-setup.gradle' )
8
8
apply from : rootProject. file(' gradle/java-publish.gradle' )
9
9
10
- String VER_SOLSTICE = ' 1.8.0 '
10
+ String VER_SOLSTICE = ' 1.8.1 '
11
11
dependencies {
12
12
api projects. lib
13
13
// misc useful utilities
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2016-2024 DiffPlug
2
+ * Copyright 2016-2025 DiffPlug
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -131,8 +131,8 @@ public FormatterStep build() {
131
131
}
132
132
var classpath = new ArrayList <File >();
133
133
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 " );
136
136
mavenDeps .addAll (query .getJarsOnMavenCentral ());
137
137
classpath .addAll (mavenProvisioner .provisionWithTransitives (false , mavenDeps ));
138
138
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 (
4
4
5
5
## [ Unreleased]
6
6
### 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 ) )
8
9
9
10
## [ 7.0.1] - 2025-01-07
10
11
### Fixed
Original file line number Diff line number Diff line change 3
3
We adhere to the [ keepachangelog] ( https://keepachangelog.com/en/1.0.0/ ) format (starting after version ` 1.27.0 ` ).
4
4
5
5
## [ Unreleased]
6
+ * Eclipse-based tasks can now handle parallel configuration ([ #2389 ] ( https://github.com/diffplug/spotless/issues/2389 ) )
6
7
7
8
## [ 2.44.1] - 2025-01-07
8
9
### Fixed
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ plugins {
22
22
// https://plugins.gradle.org/plugin/com.gradle.develocity
23
23
id ' com.gradle.develocity' version ' 3.19'
24
24
// 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
26
26
}
27
27
28
28
dependencyResolutionManagement {
You can’t perform that action at this time.
0 commit comments