1Licensed to the Apache Software Foundation (ASF) under one or more 2contributor license agreements. See the NOTICE file distributed with 3this work for additional information regarding copyright ownership. 4The ASF licenses this file to You under the Apache License, Version 2.0 5(the "License"); you may not use this file except in compliance with 6the License. You may obtain a copy of the License at 7 8http://www.apache.org/licenses/LICENSE-2.0 9 10Unless required by applicable law or agreed to in writing, software 11distributed under the License is distributed on an "AS IS" BASIS, 12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13See the License for the specific language governing permissions and 14limitations under the License. 15 16============================================================================= 17 18 Commons Lang Package 19 Version 1.0.1 20 Release Notes 21 22 23INTRODUCTION: 24 25This document contains the release notes for this version of the Commons 26Lang package. Commons Lang is a set of utility functions and reusable 27components that should be a help in any Java environment. 28 29NEW FEATURES: 30 31This release is a bugfix release for the Lang 1.0 release. There are no new features. 32 33BUG FIXES: 34 35#14062: StringUtils.split fails to handle (String, null, int) correctly. 36 This results in the String "null" appearing in the split text, when 37 the text is not entirely consumed in the split, ie) int is less 38 than the number of whitespace tokens in the String. 39 Fix is courtesy of Mark McDowell. 40 41#- : SystemUtils.isJavaVersionAtLeast made static. 42 43#- : NumberUtils test fails in JDK 1.2 due to lack of 1.2 support for 44 "1.1E-700F". Fix is to use SystemUtils to protect it for the moment. 45 46#- : ToStringStyle did not compile under JDK 1.2 due to inner class 47 issues. Added explicit 'this.' prefixes to make this so. 48 49#14566: NumberRange.getMaximum was returning the minimum. 50 Bug reported by Kasper Ronning. 51 52#13527: ExceptionUtils now handles getCausedByException and getRootCause 53 from EJBException and ServletException, as reported by Lars Beuster. 54 55#14334: NestableDelegate now implements Serializable, as reported by 56 Max Rydahl Andersen. 57 58#13568: Enums cannot now be created with the same name as an already 59 existing Enum. Enum now compiles under JDK 1.2. 60 61DEPRECATIONS: 62 63Solely a bugfix version. 64