You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -71,7 +71,7 @@ Alternatively, you can pull it from the central Maven repositories:
71
71
<dependency>
72
72
<groupId>commons-codec</groupId>
73
73
<artifactId>commons-codec</artifactId>
74
-
<version>1.19.0</version>
74
+
<version>1.20.0</version>
75
75
</dependency>
76
76
```
77
77
@@ -92,7 +92,7 @@ There are some guidelines which will make applying PRs easier for us:
92
92
+ Respect the existing code style for each file.
93
93
+ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
94
94
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
95
-
+ Before you pushing a PR, run `mvn` (by itself), this runs the default goal, which contains all build checks.
95
+
+ Before you push a PR, run `mvn` (without arguments). This runs the default goal which contains all build checks.
96
96
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
97
97
98
98
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).
Copy file name to clipboardExpand all lines: src/changes/changes.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ The <action> type attribute can be add,update,fix,remove.
43
43
<author>Apache Commons Developers</author>
44
44
</properties>
45
45
<body>
46
-
<releaseversion="1.20.0"date="YYYY-MM-DD"description="This is a feature and maintenance release. Java 8 or later is required.">
46
+
<releaseversion="1.20.0"date="2025-10-30"description="This is a feature and maintenance release. Java 8 or later is required.">
47
47
<!-- FIX -->
48
48
<actiontype="update"dev="ggregory"due-to="Gary Gregory">Deprecate all but one Base32 constructor in favor of the builder added in version 1.17.0.</action>
49
49
<actiontype="update"dev="ggregory"due-to="Gary Gregory">Deprecate all but one Base64 constructor in favor of the builder added in version 1.17.0.</action>
0 commit comments