Skip to content

Commit 63a28b8

Browse files
committed
Prep for version 1.2-rc1
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130244 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4e68dfd commit 63a28b8

5 files changed

Lines changed: 48 additions & 15 deletions

File tree

RELEASE-NOTES.txt

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
$Id: RELEASE-NOTES.txt,v 1.8 2003/11/07 00:14:14 ggregory Exp $
1+
$Id: RELEASE-NOTES.txt,v 1.9 2003/11/08 01:52:25 ggregory Exp $
22

33
Commons Codec Package
4-
Version 1.2
4+
Version 1.2 RC1
55
Release Notes
66

77

@@ -33,6 +33,12 @@ BUG FIXES:
3333
* Fix for Bug 24360: Hex.decode(Object) throws a ClassCastException
3434
when a String argument is passed in.
3535

36-
* Fix for Bug 24471: Soundex: The HW rule is not applied; hyphens and apostrophes
37-
are not ignored.
38-
36+
* Fix for Bug 24471: Soundex: The HW rule is not applied; hyphens and
37+
apostrophes are not ignored.
38+
39+
* Fix for Bug 24484: Soundex.setMaxLength causes bugs and is not needed.
40+
Calling Soundex.setMaxLength() with a value of 2 or less causes the wrong
41+
answer to be returned. Since the encoding returned by Soundex is always
42+
of length 4 by definition (we do not use the '-' in as a letter-nnn separator)
43+
the need for a maxLength attribute is not needed. Deprecate the field and
44+
accessor methods.

default.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: default.properties,v 1.5 2003/11/07 23:20:19 ggregory Exp $
1+
#$Id: default.properties,v 1.6 2003/11/08 01:52:25 ggregory Exp $
22

33
# The pathname of the "junit.jar" JAR file
44
junit.jar = ${junit.home}/junit-3.7.jar
@@ -13,7 +13,7 @@ component.package = org.apache.commons.codec
1313
component.title = Encode/Decode Utilities
1414

1515
# The current version number of this component
16-
component.version = 1.2-dev
16+
component.version = 1.2-rc1
1717

1818
# The name that is used to create the jar file
1919
final.name = ${component.name}-${component.version}

project.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<extend>../project.xml</extend>
44
<name>Codec</name>
55
<id>commons-codec</id>
6-
<currentVersion>1.2-dev</currentVersion>
6+
<currentVersion>1.2-rc1</currentVersion>
77
<inceptionYear>2002</inceptionYear>
88
<shortDescription>
99
A collection of simple and common encoders and decoders
@@ -25,6 +25,11 @@
2525
<name>1.1</name>
2626
<tag>CODEC_1_1</tag>
2727
</version>
28+
<version>
29+
<id>1.2-rc1</id>
30+
<name>1.2-rc1</name>
31+
<tag>CODEC_1_2_RC1</tag>
32+
</version>
2833
</versions>
2934
<branches>
3035
</branches>

src/java/org/apache/commons/codec/net/URLCodec.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@
8686
*
8787
* @author <a href="mailto:oleg@ural.ru">Oleg Kalnichevski</a>
8888
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
89-
* @version $Id: URLCodec.java,v 1.9 2003/10/13 16:49:24 ggregory Exp $
89+
* @since 1.2
90+
* @version $Id: URLCodec.java,v 1.10 2003/11/08 01:52:25 ggregory Exp $
9091
*/
9192

9293
public class URLCodec

xdocs/index.xml

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,16 @@
4646

4747
<section name="Releases">
4848
<ul>
49-
<li>Version 1.1 (from mirror)
50-
<a href="http://jakarta.apache.org/site/binindex.cgi">binary</a>
51-
<a href="http://jakarta.apache.org/site/sourceindex.cgi">source</a> (latest)</li>
49+
<li>Version 1.2 RC1 (latest, from mirror)
50+
<a href="http://jakarta.apache.org/site/binindex.cgi">binary</a> and
51+
<a href="http://jakarta.apache.org/site/sourceindex.cgi">source</a>
52+
</li>
53+
<li>
54+
Version <a href="http://www.apache.org/dist/jakarta/commons/codec/">1.1</a>
55+
</li>
56+
<li>
57+
Current <a href="http://www.apache.org/dist/jakarta/commons/codec/">nightly build</a>
58+
</li>
5259
</ul>
5360
</section>
5461

@@ -59,7 +66,7 @@
5966
simple framework for encoding and decoding both textual and binary data.
6067
</p>
6168

62-
<subsection name="Common Encoders">
69+
<subsection name="Binary Encoders">
6370
<table>
6471
<tr>
6572
<td width="125">
@@ -128,15 +135,29 @@
128135
</table>
129136
</subsection>
130137

131-
<subsection name="Digest Utilites">
138+
<subsection name="Digest Encoders">
132139
<table>
133140
<tr>
134141
<td width="125">
135142
<a href="apidocs/org/apache/commons/codec/digest/DigestUtils.html">
136143
DigestUtils</a>
137144
</td>
138145
<td>
139-
Provides simple static methods for creating a SHA or MD5 digest
146+
Provides simple static methods for creating a SHA or MD5 digest.
147+
</td>
148+
</tr>
149+
</table>
150+
</subsection>
151+
152+
<subsection name="Network Encoders">
153+
<table>
154+
<tr>
155+
<td width="125">
156+
<a href="apidocs/org/apache/commons/codec/net/URLCodec.html">
157+
URLCodec</a>
158+
</td>
159+
<td>
160+
Implements the <code>www-form-urlencoded</code> encoding scheme, also misleadingly known as URL encoding.
140161
</td>
141162
</tr>
142163
</table>

0 commit comments

Comments
 (0)