File tree 5 files changed +6
-3
lines changed
src/main/java/com/diffplug/spotless/kotlin
5 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
15
15
* Support ` ktlint ` 0.48+ ([ #1432 ] ( https://github.com/diffplug/spotless/pull/1432 ) ) fixes ([ #1430 ] ( https://github.com/diffplug/spotless/issues/1430 ) )
16
16
### Changes
17
17
* Bump default ` ktlint ` version to latest ` 0.47.1 ` -> ` 0.48.0 ` ([ #1432 ] ( https://github.com/diffplug/spotless/pull/1432 ) )
18
+ * Bump default ` ktfmt ` version to latest ` 0.41 ` -> ` 0.42 ` ([ #1421 ] ( https://github.com/diffplug/spotless/pull/1421 ) )
18
19
19
20
## [ 2.31.0] - 2022-11-24
20
21
### Added
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ dependencies {
55
55
56
56
palantirJavaFormatCompileOnly ' com.palantir.javaformat:palantir-java-format:1.1.0' // this version needs to stay compilable against Java 8 for CI Job testNpm
57
57
58
- String VER_KTFMT = ' 0.41 '
58
+ String VER_KTFMT = ' 0.42 '
59
59
ktfmtCompileOnly " com.facebook:ktfmt:$VER_KTFMT "
60
60
String VER_KTLINT_GOOGLE_JAVA_FORMAT = ' 1.7' // for JDK 8 compatibility
61
61
ktfmtCompileOnly(" com.google.googlejavaformat:google-java-format" ) {
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2016-2022 DiffPlug
2
+ * Copyright 2016-2023 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.
@@ -39,7 +39,7 @@ public class KtfmtStep {
39
39
// prevent direct instantiation
40
40
private KtfmtStep () {}
41
41
42
- private static final String DEFAULT_VERSION = "0.41 " ;
42
+ private static final String DEFAULT_VERSION = "0.42 " ;
43
43
static final String NAME = "ktfmt" ;
44
44
static final String PACKAGE = "com.facebook" ;
45
45
static final String MAVEN_COORDINATE = PACKAGE + ":ktfmt:" ;
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
8
8
* Support ` ktlint ` 0.48+ ([ #1432 ] ( https://github.com/diffplug/spotless/pull/1432 ) ) fixes ([ #1430 ] ( https://github.com/diffplug/spotless/issues/1430 ) )
9
9
### Changes
10
10
* Bump default ` ktlint ` version to latest ` 0.47.1 ` -> ` 0.48.0 ` ([ #1432 ] ( https://github.com/diffplug/spotless/pull/1432 ) )
11
+ * Bump default ` ktfmt ` version to latest ` 0.41 ` -> ` 0.42 ` ([ #1421 ] ( https://github.com/diffplug/spotless/pull/1421 ) )
11
12
12
13
## [ 6.12.0] - 2022-11-24
13
14
### Added
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
10
10
* Support ` ktlint ` 0.48+ ([ #1432 ] ( https://github.com/diffplug/spotless/pull/1432 ) ) fixes ([ #1430 ] ( https://github.com/diffplug/spotless/issues/1430 ) )
11
11
### Changes
12
12
* Bump default ` ktlint ` version to latest ` 0.47.1 ` -> ` 0.48.0 ` ([ #1432 ] ( https://github.com/diffplug/spotless/pull/1432 ) )
13
+ * Bump default ` ktfmt ` version to latest ` 0.41 ` -> ` 0.42 ` ([ #1421 ] ( https://github.com/diffplug/spotless/pull/1421 ) )
13
14
14
15
## [ 2.28.0] - 2022-11-24
15
16
### Added
You can’t perform that action at this time.
0 commit comments