Merge branch 'LANG-1023'

Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/a3b74d9c
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/a3b74d9c
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/a3b74d9c

Branch: refs/heads/master
Commit: a3b74d9c230a85df8ebeef3169fc1cd0439c9a87
Parents: cac7a60 2b36e25
Author: Benedikt Ritter <brit...@apache.org>
Authored: Sun Sep 25 19:19:08 2016 +0200
Committer: Benedikt Ritter <brit...@apache.org>
Committed: Sun Sep 25 19:19:08 2016 +0200

----------------------------------------------------------------------
 src/changes/changes.xml                         |   1 +
 .../apache/commons/lang3/text/WordUtils.java    | 126 +++++++++++++++++--
 .../commons/lang3/text/WordUtilsTest.java       |  28 ++++-
 3 files changed, 147 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/a3b74d9c/src/changes/changes.xml
----------------------------------------------------------------------
diff --cc src/changes/changes.xml
index a9b58e2,3a89fae..b7be59e
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@@ -45,23 -45,10 +45,24 @@@ The <action> type attribute can be add,
    </properties>
    <body>
  
 -  <release version="3.5" date="tba" description="tba">
 +  <release version="3.5" date="tba" description="New features including Java 
9 detection">
+     <action issue="LANG-1023" type="add" dev="britter" due-to="Marko 
Bekhta">Add WordUtils.wrap overload with customizable breakable 
character</action>
 -    <action issue="LANG-1248" type="fix" dev="chas" due-to="Benoit 
Wiart">FastDatePrinter Memory allocation regression</action>
 -    <action issue="LANG-1247" type="fix" dev="chas" due-to="Benoit 
Wiart">FastDatePrinter generates extra Date objects</action>
 +    <action issue="LANG-787" type="add" dev="pschumacher" due-to="Gokul 
Nanthakumar C">Add method removeIgnoreCase(String, String) to 
StringUtils</action>
 +    <action issue="LANG-1261" type="fix" dev="pschumacher" 
>ArrayUtils.contains returns false for instances of subtypes</action>
 +    <action issue="LANG-1197" type="update" dev="pschumacher" >Prepare Java 9 
detection</action>
 +    <action issue="LANG-1252" type="fix" dev="chtompki" due-to="Rob 
Tompkins">Rename NumberUtils.isNumber, isCreatable to better reflect 
createNumber. Also, accommodated for "+" symbol as prefix in isCreatable and 
isNumber.</action>
 +    <action issue="LANG-1262" type="update" dev="pschumacher" due-to="Ruslan 
Cheremin">CompareToBuilder.append(Object, Object, Comparator) method is too big 
to be inlined</action>
 +    <action issue="LANG-1230" type="fix" dev="pschumacher" due-to="Philippe 
Marschall">Remove unnecessary synchronization from registry lookup in 
EqualsBuilder and HashCodeBuilder</action>
 +    <action issue="LANG-1224" type="add" dev="pschumacher" due-to="Caleb 
Cushing">Extend RandomStringUtils with methods that generate strings between a 
min and max length</action>
 +    <action issue="LANG-1214" type="fix" dev="pschumacher" due-to="Henry 
Tung">Handle "void" in ClassUtils.getClass()</action>
 +    <action issue="LANG-1250" type="fix" dev="pschumacher" due-to="Glease 
Wang">SerializationUtils#deserialize has unnecessary code and a comment for 
that</action>
 +    <action issue="LANG-1259" type="update" dev="britter" due-to="Dominik 
Stadler">JavaDoc for ArrayUtils.isNotEmpty() is slightly misleading</action>
 +    <action issue="LANG-1257" type="add" dev="ggregory" due-to="Gary 
Gregory">Add APIs StringUtils.wrapIfMissing(String, char|String)</action>
 +    <action issue="LANG-1190" type="fix" dev="pschumacher" 
due-to="pschumacher">TypeUtils.isAssignable throws NullPointerException when 
fromType has type variables and toType generic superclass specifies type 
variable</action>
 +    <action issue="LANG-1226" type="fix" dev="pschumacher" 
due-to="pschumacher">StringUtils#normalizeSpace does not trim the string 
anymore</action>
 +    <action issue="LANG-1251" type="fix" dev="pschumacher" due-to="Takuya 
Ueshin">SerializationUtils.ClassLoaderAwareObjectInputStream should use static 
initializer to initialize primitiveTypes map</action>
 +    <action issue="LANG-1253" type="add" dev="ggregory" 
due-to="adilek">[GitHub issue #170] Add RandomUtils#nextBoolean() 
method</action>
 +    <action issue="LANG-1247" type="update" dev="chas" due-to="Benoit 
Wiart">FastDatePrinter generates extra Date objects</action>
      <action issue="LANG-1018" type="fix" dev="pschumacher" due-to="Nick 
Manley">Fix precision loss on NumberUtils.createNumber(String)</action>
      <action issue="LANG-1229" type="update" dev="pschumacher" due-to="Ruslan 
Cheremin">HashCodeBuilder.append(Object,Object) is too big to be inlined, which 
prevents whole builder to be scalarized</action>
      <action issue="LANG-1085" type="add" dev="oheger" due-to="oheger / 
kinow">Add a circuit breaker implementation</action>

http://git-wip-us.apache.org/repos/asf/commons-lang/blob/a3b74d9c/src/main/java/org/apache/commons/lang3/text/WordUtils.java
----------------------------------------------------------------------

Reply via email to