You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2011/01/24 02:11:40 UTC

svn commit: r1062600 - in /commons/proper/codec/trunk: RELEASE-NOTES.txt src/changes/changes.xml

Author: ggregory
Date: Mon Jan 24 01:11:39 2011
New Revision: 1062600

URL: http://svn.apache.org/viewvc?rev=1062600&view=rev
Log:
[CODEC-111] org.apache.commons.codec.net.URLCodec.ESCAPE_CHAR isn't final but should be. https://issues.apache.org/jira/browse/CODEC-111

Modified:
    commons/proper/codec/trunk/RELEASE-NOTES.txt
    commons/proper/codec/trunk/src/changes/changes.xml

Modified: commons/proper/codec/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/RELEASE-NOTES.txt?rev=1062600&r1=1062599&r2=1062600&view=diff
==============================================================================
--- commons/proper/codec/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/codec/trunk/RELEASE-NOTES.txt Mon Jan 24 01:11:39 2011
@@ -12,9 +12,10 @@ decoders, the codec package also maintai
 utilities. 
 
 Compatibility
-o Codec 1.5 is binary compatible with Codec 1.3
+o Codec 1.5 is binary compatible with Codec 1.3 with the exception of 
+  [CODEC-111]: org.apache.commons.codec.net.URLCodec.ESCAPE_CHAR isn't final but should be.
 o Codec 1.5 fixes some accidental binary incompatibilities between
-  1.4 and 1.3, and thus it is NOT binary compatible with Codec-1.4.
+  1.4 and 1.3, and thus it is NOT binary compatible with 1.4.
 o Codec 1.5 has a minimum requirement of JDK 1.4
 
 Changes in this version include:
@@ -27,6 +28,7 @@ o [CODEC-XYZ] TBD
 
 o [CODEC-89]  new Base64().encode() appends a CRLF, and chunks results into 76 character lines
 o [CODEC-98]  Base64InputStream causes NullPointerException on some input.
+o [CODEC-111] org.apache.commons.codec.net.URLCodec.ESCAPE_CHAR isn't final but should be.
 
   Changes:
 

Modified: commons/proper/codec/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/changes/changes.xml?rev=1062600&r1=1062599&r2=1062600&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/changes/changes.xml (original)
+++ commons/proper/codec/trunk/src/changes/changes.xml Mon Jan 24 01:11:39 2011
@@ -50,6 +50,9 @@
             <action dev="bayard" type="add" issue="CODEC-106" due-to="it2mmeyerfa">
              Add the "Kölner Phonetik" encoder (cologne phonetic) to codec.lang.
             </action>
+            <action dev="ggregory" type="add" issue="CODEC-111" due-to="ggregory">
+             org.apache.commons.codec.net.URLCodec.ESCAPE_CHAR isn't final but should be.
+            </action>
         </release>
         <release version="1.4" date="9 August 2009" description="Feature and fix release.">
             <action dev="ggregory" type="fix" issue="CODEC-80" due-to="Julius Davies">