diff --git a/CHANGELOG.md b/CHANGELOG.md
index 237676b7..32d708ff 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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.
diff --git a/build.gradle b/build.gradle
index 3e75d4e3..03c9ddb6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -20,7 +20,7 @@ repositories {
// Project Metadata
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-version = '5.48.0'
+version = '5.49.0'
intellij {
version = 'IC-2019.1.4'
diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml
index 3fe698cc..7493dc24 100644
--- a/src/main/resources/META-INF/plugin.xml
+++ b/src/main/resources/META-INF/plugin.xml
@@ -15,7 +15,7 @@
]]>
- 5.48.0
+ 5.49.0
Jamie Shiell
@@ -24,6 +24,7 @@
+ 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.
diff --git a/src/main/resources/checkstyle-idea.properties b/src/main/resources/checkstyle-idea.properties
index 6bb1e3ad..5da5eb60 100644
--- a/src/main/resources/checkstyle-idea.properties
+++ b/src/main/resources/checkstyle-idea.properties
@@ -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'.
@@ -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.