File tree 6 files changed +6
-3
lines changed
src/main/java/com/diffplug/spotless/pom
testlib/src/test/java/com/diffplug/spotless/pom
6 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
17
17
* Bump default ` ktfmt ` version to latest ` 0.46 ` -> ` 0.47 ` . ([ #2045 ] ( https://github.com/diffplug/spotless/pull/2045 ) )
18
18
* Bump default ` sortpom ` version to latest ` 3.2.1 ` -> ` 3.4.0 ` . ([ #2049 ] ( https://github.com/diffplug/spotless/pull/2049 ) )
19
19
* Bump default ` shfmt ` version to latest ` 3.7.0 ` -> ` 3.8.0 ` . ([ #2050 ] ( https://github.com/diffplug/spotless/pull/2050 ) )
20
+ * Bump default ` sortpom ` version to latest ` 3.4.0 ` -> ` 3.4.1 ` . ([ #2078 ] ( https://github.com/diffplug/spotless/pull/2078 ) )
20
21
### Removed
21
22
* ** BREAKING** Remove ` JarState.getMavenCoordinate(String prefix) ` . ([ #1945 ] ( https://github.com/diffplug/spotless/pull/1945 ) )
22
23
* ** BREAKING** Replace ` PipeStepPair ` with ` FenceStep ` . ([ #1954 ] ( https://github.com/diffplug/spotless/pull/1954 ) )
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ dependencies {
128
128
// scalafmt
129
129
scalafmtCompileOnly " org.scalameta:scalafmt-core_2.13:3.7.3"
130
130
// sortPom
131
- sortPomCompileOnly ' com.github.ekryd.sortpom:sortpom-sorter:3.4.0 '
131
+ sortPomCompileOnly ' com.github.ekryd.sortpom:sortpom-sorter:3.4.1 '
132
132
sortPomCompileOnly ' org.slf4j:slf4j-api:2.0.12'
133
133
// zjsonPatch
134
134
zjsonPatchCompileOnly ' com.flipkart.zjsonpatch:zjsonpatch:0.4.14'
Original file line number Diff line number Diff line change 21
21
public class SortPomCfg implements Serializable {
22
22
private static final long serialVersionUID = 1L ;
23
23
24
- public String version = "3.4.0 " ;
24
+ public String version = "3.4.1 " ;
25
25
26
26
public String encoding = "UTF-8" ;
27
27
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
9
9
* Bump default ` ktfmt ` version to latest ` 0.46 ` -> ` 0.47 ` . ([ #2045 ] ( https://github.com/diffplug/spotless/pull/2045 ) )
10
10
* Bump default ` sortpom ` version to latest ` 3.2.1 ` -> ` 3.4.0 ` . ([ #2049 ] ( https://github.com/diffplug/spotless/pull/2049 ) )
11
11
* Bump default ` shfmt ` version to latest ` 3.7.0 ` -> ` 3.8.0 ` . ([ #2050 ] ( https://github.com/diffplug/spotless/pull/2050 ) )
12
+ * Bump default ` sortpom ` version to latest ` 3.4.0 ` -> ` 3.4.1 ` . ([ #2078 ] ( https://github.com/diffplug/spotless/pull/2078 ) )
12
13
### Added
13
14
* Respect ` .editorconfig ` settings for formatting shell via ` shfmt ` ([ #2031 ] ( https://github.com/diffplug/spotless/pull/2031 ) )
14
15
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
9
9
* Bump default ` ktfmt ` version to latest ` 0.46 ` -> ` 0.47 ` . ([ #2045 ] ( https://github.com/diffplug/spotless/pull/2045 ) )
10
10
* Bump default ` sortpom ` version to latest ` 3.2.1 ` -> ` 3.4.0 ` . ([ #2049 ] ( https://github.com/diffplug/spotless/pull/2049 ) )
11
11
* Bump default ` shfmt ` version to latest ` 3.7.0 ` -> ` 3.8.0 ` . ([ #2050 ] ( https://github.com/diffplug/spotless/pull/2050 ) )
12
+ * Bump default ` sortpom ` version to latest ` 3.4.0 ` -> ` 3.4.1 ` . ([ #2078 ] ( https://github.com/diffplug/spotless/pull/2078 ) )
12
13
### Added
13
14
* Respect ` .editorconfig ` settings for formatting shell via ` shfmt ` ([ #2031 ] ( https://github.com/diffplug/spotless/pull/2031 ) )
14
15
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public void testSortPomWithDefaultConfig() {
30
30
@ Test
31
31
public void testSortPomWithVersion () {
32
32
SortPomCfg cfg = new SortPomCfg ();
33
- cfg .version = "3.4.0 " ;
33
+ cfg .version = "3.4.1 " ;
34
34
FormatterStep step = SortPomStep .create (cfg , TestProvisioner .mavenCentral ());
35
35
StepHarness .forStep (step ).testResource ("pom/pom_dirty.xml" , "pom/pom_clean_default.xml" );
36
36
}
You can’t perform that action at this time.
0 commit comments