Skip to content

Commit 53ffcf6

Browse files
committed
Change version of codenarc to 4.9.4 and prepare changelog of the version
1 parent 81faacf commit 53ffcf6

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

android-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
<dependency>
185185
<groupId>org.codenarc</groupId>
186186
<artifactId>CodeNarc</artifactId>
187-
<version>2.2.3</version>
187+
<version>2.2.4</version>
188188
</dependency>
189189

190190
<dependency>

codenarc-converter/CodeNarc/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
<!-- markdownlint-disable MD003 MD004 MD007 MD032 -->
33
# CodeNarc Change Log
44

5+
Version 2.2.4 (September 2023)
6+
--------------------------------------
7+
Update key of ecoCode rules:
8+
- Fat App -> EC5001
9+
- Supported Version Range -> EC5002
10+
- Disable Obfuscation -> EC5003
11+
512
Version 2.2.3 (November 2022)
613
--------------------------------------
714
Added rule

codenarc-converter/CodeNarc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ shadowJar {
1414

1515
group = 'org.codenarc'
1616
archivesBaseName = 'CodeNarc'
17-
version = '2.2.3'
17+
version = '2.2.4'
1818

1919
sourceCompatibility = '1.7'
2020
targetCompatibility = '1.7'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.3
1+
2.2.4

codenarc-converter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<url>https://github.com/green-code-initiative/ecocode-android/tree/main/codenarc-converter</url>
1717

1818
<properties>
19-
<codenarc.version>2.2.3</codenarc.version>
19+
<codenarc.version>2.2.4</codenarc.version>
2020
<auto.version>1.8.2</auto.version>
2121
<maven.deploy.skip>true</maven.deploy.skip>
2222
</properties>

tool_prepare-codenarc.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
REM == Define CodeNarc version
2-
set codenarc_version=2.2.3
2+
set codenarc_version=2.2.4
33

44
REM == Build CodeNarc
55
cd codenarc-converter/CodeNarc

tool_prepare-codenarc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env sh
22

33
# Define CodeNarc version
4-
codenarcVersion="2.2.3"
4+
codenarcVersion="2.2.4"
55

66
# Build CodeNarc
77
cd codenarc-converter/CodeNarc

0 commit comments

Comments
 (0)