Skip to content

Commit

Permalink
Added Checkstyle 8.41.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jshiell committed Apr 5, 2021
1 parent 5c19ab6 commit 07ef609
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# CheckStyle-IDEA Changelog

* **5.49.0** New: Added Checkstyle 8.41.1.
* **5.48.0** New: Added Checkstyle 8.41.
* **5.48.0** Fixed: Added a timeout to avoid deadlock on closing a project during a scan (#515).
* **5.47.0** New: Added Checkstyle 8.40.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {
// Project Metadata
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

version = '5.48.0'
version = '5.49.0'

intellij {
version = 'IC-2019.1.4'
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</p>
]]>
</description>
<version>5.48.0</version>
<version>5.49.0</version>
<idea-version since-build="191.8026.42"/>
<vendor url="https://infernus.org/" email="jamie@infernus.org">Jamie Shiell</vendor>

Expand All @@ -24,6 +24,7 @@
<change-notes>
<![CDATA[
<ul>
<li>5.49.0: New: Added Checkstyle 8.41.1.</li>
<li>5.48.0: New: Added Checkstyle 8.41.</li>
<li>5.48.0: Fixed: Added a timeout to avoid deadlock on closing a project during a scan (#515).</li>
<li>5.47.0: New: Added Checkstyle 8.40.</li>
Expand Down
5 changes: 3 additions & 2 deletions src/main/resources/checkstyle-idea.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ checkstyle.versions.java7 = 6.16.1, 6.19
checkstyle.versions.java8 = 7.1.2, 7.2, 7.3, 7.4, 7.5.1, 7.6, 7.6.1, 7.8.2, \
8.0, 8.1, 8.2, 8.3, 8.5, 8.6, 8.7, 8.8, 8.10.1, 8.14, 8.16, 8.17, 8.18, \
8.20, 8.23, 8.24, 8.25, 8.26, 8.27, 8.28, 8.29, 8.30, 8.31, 8.32, 8.33, \
8.34, 8.35, 8.36.2, 8.37, 8.38, 8.39, 8.40, 8.41
8.34, 8.35, 8.36.2, 8.37, 8.38, 8.39, 8.40, 8.41.1

# The "base version" must be one of the versions listed above. The sources are compiled against this version, so it is
# the dependency shown in the IDE and the runtime used when unit tests are run from the IDE or via 'runCsaccessTests'.
Expand All @@ -32,7 +32,8 @@ checkstyle.versions.map = \
8.15 -> 8.16, \
8.19 -> 8.20, \
8.21 -> 8.23, 8.22 -> 8.23, \
8.36 -> 8.36.2, 8.36.1 -> 8.36.2
8.36 -> 8.36.2, 8.36.1 -> 8.36.2, \
8.41 -> 8.41.1

# Maps dependencies to compatible versions, allowing us to save archive space where the dependencies
# are sufficiently compatible.
Expand Down

0 comments on commit 07ef609

Please sign in to comment.