Skip to content

Commit ee44ee7

Browse files
authored
Merge branch 'main' into feat/maven-build
2 parents c51331d + 9f24a34 commit ee44ee7

File tree

5 files changed

+20
-2
lines changed

5 files changed

+20
-2
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1212
## [Unreleased]
1313
### Added
1414
* `ProcessRunner` has added some convenience methods so it can be used for maven testing. ([#1496](https://github.com/diffplug/spotless/pull/1496))
15+
### Fixed
16+
* The default list of type annotations used by `formatAnnotations` has had 8 more annotations from the Checker Framework added [#1494](https://github.com/diffplug/spotless/pull/1494)
17+
### Changes
1518

1619
## [2.32.0] - 2023-01-13
1720
### Added

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ VER_SLF4J=[1.6,2.0[
2727
VER_DURIAN=1.2.0
2828
VER_JGIT=5.13.1.202206130422-r
2929
VER_JUNIT=5.9.2
30-
VER_ASSERTJ=3.24.1
30+
VER_ASSERTJ=3.24.2
3131
VER_MOCKITO=4.11.0

lib/src/main/java/com/diffplug/spotless/java/FormatAnnotationsStep.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 DiffPlug
2+
* Copyright 2022-2023 DiffPlug
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -55,6 +55,13 @@ public final class FormatAnnotationsStep {
5555
"Acceleration",
5656
"ACCTop",
5757
"AinferBottom",
58+
"AinferDefaultType",
59+
"AinferParent",
60+
"AinferSibling1",
61+
"AinferSibling2",
62+
"AinferTop",
63+
"AinferImplicitAnno",
64+
"AinferSiblingWithFields",
5865
"AlwaysSafe",
5966
"Angle",
6067
"AnnoWithStringArg",
@@ -102,6 +109,7 @@ public final class FormatAnnotationsStep {
102109
"DefaultType",
103110
"degrees",
104111
"Det",
112+
"DoesNotMatchRegex",
105113
"DotSeparatedIdentifiers",
106114
"DotSeparatedIdentifiersOrPrimitiveType",
107115
"DoubleVal",

plugin-gradle/CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (starting after version `3.27.0`).
44

55
## [Unreleased]
6+
### Added
7+
### Fixed
8+
* The default list of type annotations used by `formatAnnotations` has had 8 more annotations from the Checker Framework added [#1494](https://github.com/diffplug/spotless/pull/1494)
9+
### Changes
610

711
## [6.13.0] - 2023-01-14
812
### Added

plugin-maven/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (starting after version `1.27.0`).
44

55
## [Unreleased]
6+
### Added
7+
### Fixed
8+
* The default list of type annotations used by `formatAnnotations` has had 8 more annotations from the Checker Framework added [#1494](https://github.com/diffplug/spotless/pull/1494)
69
### Changes
710
* Spotless' custom build was replaced by [`maven-plugin-development`](https://github.com/britter/maven-plugin-development). ([#1496](https://github.com/diffplug/spotless/pull/1496) fixes [#554](https://github.com/diffplug/spotless/issues/554))
811

0 commit comments

Comments
 (0)