Skip to content

Commit 12c88cf

Browse files
authored
fix(deps): update dependency org.scalameta:scalafmt-core_2.13 to v3.6.1 (#1373)
2 parents 3d635ee + 284dfaf commit 12c88cf

File tree

6 files changed

+6
-3
lines changed

6 files changed

+6
-3
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1717
* Support `ktlint_disabled_rules` in `ktlint` 0.47.x [#1378](https://github.com/diffplug/spotless/pull/1378)
1818
### Changes
1919
* Bump default `ktfmt` version to latest `0.40` -> `0.41` ([#1340](https://github.com/diffplug/spotless/pull/1340))
20+
* Bump default `scalafmt` version to latest `3.5.9` -> `3.6.1` ([#1373](https://github.com/diffplug/spotless/pull/1373))
2021

2122
## [2.30.0] - 2022-09-14
2223
### Added

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ dependencies {
9191
compatKtLint0Dot47Dot0CompileOnly 'com.pinterest.ktlint:ktlint-ruleset-experimental:0.47.0'
9292
compatKtLint0Dot47Dot0CompileOnly 'com.pinterest.ktlint:ktlint-ruleset-standard:0.47.0'
9393

94-
String VER_SCALAFMT="3.5.9"
94+
String VER_SCALAFMT="3.6.1"
9595
scalafmtCompileOnly "org.scalameta:scalafmt-core_2.13:$VER_SCALAFMT"
9696

9797
String VER_DIKTAT = "1.2.3"

lib/src/main/java/com/diffplug/spotless/scala/ScalaFmtStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class ScalaFmtStep {
3434
// prevent direct instantiation
3535
private ScalaFmtStep() {}
3636

37-
private static final String DEFAULT_VERSION = "3.5.9";
37+
private static final String DEFAULT_VERSION = "3.6.1";
3838

3939
private static final String DEFAULT_SCALA_MAJOR_VERSION = "2.13";
4040
static final String NAME = "scalafmt";

plugin-gradle/CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1010
* Support `ktlint_disabled_rules` in `ktlint` 0.47.x [#1378](https://github.com/diffplug/spotless/pull/1378)
1111
### Changes
1212
* Bump default `ktfmt` version to latest `0.40` -> `0.41` ([#1340](https://github.com/diffplug/spotless/pull/1340))
13+
* Bump default `scalafmt` version to latest `3.5.9` -> `3.6.1` ([#1373](https://github.com/diffplug/spotless/pull/1373))
1314

1415
## [6.11.0] - 2022-09-14
1516
### Added

plugin-maven/CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1010
* Support `ktlint_disabled_rules` in `ktlint` 0.47.x [#1378](https://github.com/diffplug/spotless/pull/1378)
1111
### Changes
1212
* Bump default `ktfmt` version to latest `0.40` -> `0.41` ([#1340](https://github.com/diffplug/spotless/pull/1340))
13+
* Bump default `scalafmt` version to latest `3.5.9` -> `3.6.1` ([#1373](https://github.com/diffplug/spotless/pull/1373))
1314

1415
## [2.27.2] - 2022-10-10
1516
### Fixed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.5.9
1+
version = 3.6.1
22
runner.dialect = scala213
33
style = defaultWithAlign # For pretty alignment.
44
maxColumn = 20 # For my teensy narrow display

0 commit comments

Comments
 (0)