Note the CharSequence API change

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1090426 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-04-08 20:17:00 +00:00
parent 287b2cd800
commit 4458775718
2 changed files with 2 additions and 0 deletions

View File

@ -82,6 +82,7 @@ IMPROVEMENTS IN 3.0
[LANG-504] bring ArrayUtils.isEmpty to the generics world.
[LANG-505] Rewrite StringEscapeUtils.
[LANG-507] StringEscapeUtils.unescapeJava should support \u+ notation.
[LANG-510] Convert StringUtils API to take CharSequence.
[LANG-513] Better EnumUtils.
[LANG-528] Mutable classes should implement an appropriately typed Mutable interface.
[LANG-539] Compile commons.lang for CDC 1.1/Foundation 1.1.

View File

@ -22,6 +22,7 @@
<body>
<release version="3.0" date="Unreleased" description="Backwards incompatible update of Commons Lang to Java 5">
<action type="update" issues="LANG-510">Convert StringUtils API to take CharSequence</action>
<action type="fix" issue="LANG-685">EqualsBuilder synchronizes on HashCodeBuilder</action>
<action type="fix" issue="LANG-428">StringUtils.isAlpha, isAlphanumeric and isNumeric now return false for ""</action>
<action type="add" issue="LANG-678">Add support for ConcurrentMap.putIfAbsent()</action>