File tree Expand file tree Collapse file tree 5 files changed +8
-2
lines changed
src/main/java/com/diffplug/spotless/kotlin Expand file tree Collapse file tree 5 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
15
15
### Fixed
16
16
* Don't treat ` @Value ` as a type annotation [ #1367 ] ( https://github.com/diffplug/spotless/pull/1367 )
17
17
* Support ` ktlint_disabled_rules ` in ` ktlint ` 0.47.x [ #1378 ] ( https://github.com/diffplug/spotless/pull/1378 )
18
+ ### Changes
19
+ * Bump default ` ktfmt ` version to latest ` 0.40 ` -> ` 0.41 ` ([ #1340 ] ( https://github.com/diffplug/spotless/pull/1340 ) )
18
20
19
21
## [ 2.30.0] - 2022-09-14
20
22
### Added
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ dependencies {
54
54
55
55
palantirJavaFormatCompileOnly ' com.palantir.javaformat:palantir-java-format:1.1.0'
56
56
57
- String VER_KTFMT = ' 0.40 '
57
+ String VER_KTFMT = ' 0.41 '
58
58
ktfmtCompileOnly " com.facebook:ktfmt:$VER_KTFMT "
59
59
String VER_KTLINT_GOOGLE_JAVA_FORMAT = ' 1.7' // for JDK 8 compatibility
60
60
ktfmtCompileOnly(" com.google.googlejavaformat:google-java-format" ) {
Original file line number Diff line number Diff line change @@ -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.40 " ;
42
+ private static final String DEFAULT_VERSION = "0.41 " ;
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,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
8
8
### Fixed
9
9
* Don't treat ` @Value ` as a type annotation [ #1367 ] ( https://github.com/diffplug/spotless/pull/1367 )
10
10
* Support ` ktlint_disabled_rules ` in ` ktlint ` 0.47.x [ #1378 ] ( https://github.com/diffplug/spotless/pull/1378 )
11
+ ### Changes
12
+ * Bump default ` ktfmt ` version to latest ` 0.40 ` -> ` 0.41 ` ([ #1340 ] ( https://github.com/diffplug/spotless/pull/1340 ) )
11
13
12
14
## [ 6.11.0] - 2022-09-14
13
15
### Added
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
8
8
### Fixed
9
9
* Don't treat ` @Value ` as a type annotation [ #1367 ] ( https://github.com/diffplug/spotless/pull/1367 )
10
10
* Support ` ktlint_disabled_rules ` in ` ktlint ` 0.47.x [ #1378 ] ( https://github.com/diffplug/spotless/pull/1378 )
11
+ ### Changes
12
+ * Bump default ` ktfmt ` version to latest ` 0.40 ` -> ` 0.41 ` ([ #1340 ] ( https://github.com/diffplug/spotless/pull/1340 ) )
11
13
12
14
## [ 2.27.2] - 2022-10-10
13
15
### Fixed
You can’t perform that action at this time.
0 commit comments