File tree Expand file tree Collapse file tree 6 files changed +15
-6
lines changed
lib-extra/src/main/java/com/diffplug/spotless/extra Expand file tree Collapse file tree 6 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
14
14
* Bump default ` ktlint ` version to latest ` 1.2.1 ` -> ` 1.3.0 ` . ([ #2165 ] ( https://github.com/diffplug/spotless/pull/2165 ) )
15
15
* Bump default ` ktfmt ` version to latest ` 0.49 ` -> ` 0.51 ` . ([ #2172 ] ( https://github.com/diffplug/spotless/pull/2172 ) )
16
16
* Rename property ` ktfmt ` option ` removeUnusedImport ` -> ` removeUnusedImports ` to match ` ktfmt ` . ([ #2172 ] ( https://github.com/diffplug/spotless/pull/2172 ) )
17
+ * Bump default ` eclipse ` version to latest ` 4.29 ` -> ` 4.32 ` . ([ #2179 ] ( https://github.com/diffplug/spotless/pull/2179 ) )
18
+ * Bump default ` greclipse ` version to latest ` 4.49 ` -> ` 4.31 ` . ([ #2179 ] ( https://github.com/diffplug/spotless/pull/2179 ) )
19
+ * Bump default ` cdt ` version to latest ` 11.3 ` -> ` 11.6 ` . ([ #2179 ] ( https://github.com/diffplug/spotless/pull/2179 ) )
17
20
### Fixed
18
21
* Fix compatibility issue introduced by ` ktfmt ` ` 0.51 ` . ([ #2172 ] ( https://github.com/diffplug/spotless/issues/2172 ) )
19
22
### Added
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2016-2023 DiffPlug
2
+ * Copyright 2016-2024 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.
@@ -37,7 +37,7 @@ public final class EclipseCdtFormatterStep {
37
37
private EclipseCdtFormatterStep () {}
38
38
39
39
private static final String NAME = "eclipse cdt formatter" ;
40
- private static final Jvm .Support <String > JVM_SUPPORT = Jvm .<String > support (NAME ).add (11 , "10.7" ).add (17 , "11.3 " );
40
+ private static final Jvm .Support <String > JVM_SUPPORT = Jvm .<String > support (NAME ).add (11 , "10.7" ).add (17 , "11.6 " );
41
41
42
42
public static String defaultVersion () {
43
43
return JVM_SUPPORT .getRecommendedFormatterVersion ();
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2016-2023 DiffPlug
2
+ * Copyright 2016-2024 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.
@@ -32,7 +32,7 @@ public final class GrEclipseFormatterStep {
32
32
private GrEclipseFormatterStep () {}
33
33
34
34
private static final String NAME = "eclipse groovy formatter" ;
35
- private static final Jvm .Support <String > JVM_SUPPORT = Jvm .<String > support (NAME ).add (11 , "4.26" ).add (17 , "4.29 " );
35
+ private static final Jvm .Support <String > JVM_SUPPORT = Jvm .<String > support (NAME ).add (11 , "4.26" ).add (17 , "4.31 " );
36
36
37
37
public static String defaultVersion () {
38
38
return JVM_SUPPORT .getRecommendedFormatterVersion ();
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2016-2023 DiffPlug
2
+ * Copyright 2016-2024 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.
@@ -31,7 +31,7 @@ public final class EclipseJdtFormatterStep {
31
31
private EclipseJdtFormatterStep () {}
32
32
33
33
private static final String NAME = "eclipse jdt formatter" ;
34
- private static final Jvm .Support <String > JVM_SUPPORT = Jvm .<String > support (NAME ).add (11 , "4.26" ).add (17 , "4.29 " );
34
+ private static final Jvm .Support <String > JVM_SUPPORT = Jvm .<String > support (NAME ).add (11 , "4.26" ).add (17 , "4.32 " );
35
35
36
36
public static String defaultVersion () {
37
37
return JVM_SUPPORT .getRecommendedFormatterVersion ();
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
7
7
* Bump default ` ktlint ` version to latest ` 1.2.1 ` -> ` 1.3.0 ` . ([ #2165 ] ( https://github.com/diffplug/spotless/pull/2165 ) )
8
8
* Bump default ` ktfmt ` version to latest ` 0.49 ` -> ` 0.51 ` . ([ #2172 ] ( https://github.com/diffplug/spotless/pull/2172 ) )
9
9
* Rename property ` ktfmt ` option ` removeUnusedImport ` -> ` removeUnusedImports ` to match ` ktfmt ` . ([ #2172 ] ( https://github.com/diffplug/spotless/pull/2172 ) )
10
+ * Bump default ` eclipse ` version to latest ` 4.29 ` -> ` 4.32 ` . ([ #2179 ] ( https://github.com/diffplug/spotless/pull/2179 ) )
11
+ * Bump default ` greclipse ` version to latest ` 4.49 ` -> ` 4.31 ` . ([ #2179 ] ( https://github.com/diffplug/spotless/pull/2179 ) )
12
+ * Bump default ` cdt ` version to latest ` 11.3 ` -> ` 11.6 ` . ([ #2179 ] ( https://github.com/diffplug/spotless/pull/2179 ) )
10
13
### Fixed
11
14
* Fix compatibility issue introduced by ` ktfmt ` ` 0.51 ` . ([ #2172 ] ( https://github.com/diffplug/spotless/issues/2172 ) )
12
15
### Added
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
7
7
* Bump default ` ktlint ` version to latest ` 1.2.1 ` -> ` 1.3.0 ` . ([ #2165 ] ( https://github.com/diffplug/spotless/pull/2165 ) )
8
8
* Bump default ` ktfmt ` version to latest ` 0.49 ` -> ` 0.51 ` . ([ #2172 ] ( https://github.com/diffplug/spotless/pull/2172 ) )
9
9
* Rename property ` ktfmt ` option ` removeUnusedImport ` -> ` removeUnusedImports ` to match ` ktfmt ` . ([ #2172 ] ( https://github.com/diffplug/spotless/pull/2172 ) )
10
+ * Bump default ` eclipse ` version to latest ` 4.29 ` -> ` 4.32 ` . ([ #2179 ] ( https://github.com/diffplug/spotless/pull/2179 ) )
11
+ * Bump default ` greclipse ` version to latest ` 4.49 ` -> ` 4.31 ` . ([ #2179 ] ( https://github.com/diffplug/spotless/pull/2179 ) )
12
+ * Bump default ` cdt ` version to latest ` 11.3 ` -> ` 11.6 ` . ([ #2179 ] ( https://github.com/diffplug/spotless/pull/2179 ) )
10
13
### Fixed
11
14
* Fix compatibility issue introduced by ` ktfmt ` ` 0.51 ` . ([ #2172 ] ( https://github.com/diffplug/spotless/issues/2172 ) )
12
15
### Added
You can’t perform that action at this time.
0 commit comments