Skip to content

Commit

Permalink
Prepare 3.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
chtompki committed Sep 19, 2018
1 parent ae9b312 commit eb5b11a
Show file tree
Hide file tree
Showing 8 changed files with 1,338 additions and 31 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -46,7 +46,7 @@ Apache Commons Lang
[![Build Status](https://travis-ci.org/apache/commons-lang.svg)](https://travis-ci.org/apache/commons-lang)
[![Coverage Status](https://coveralls.io/repos/apache/commons-lang/badge.svg)](https://coveralls.io/r/apache/commons-lang)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-lang3/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-lang3/)
[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-lang3/3.8.svg)](https://javadoc.io/doc/org.apache.commons/commons-lang3/3.8)
[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-lang3/3.8.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-lang3/3.8.1)

Apache Commons Lang, a package of Java utility classes for the
classes that are in java.lang's hierarchy, or are considered to be so
Expand All @@ -69,7 +69,7 @@ Alternatively you can pull it from the central Maven repositories:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.8</version>
<version>3.8.1</version>
</dependency>
```

Expand Down
49 changes: 41 additions & 8 deletions RELEASE-NOTES.txt
Expand Up @@ -14,6 +14,47 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

=============================================================================

Apache Commons Lang
Version 3.8.1
Release Notes


INTRODUCTION:

This document contains the release notes for the 3.8.1 version of Apache Commons Lang.
Commons Lang is a set of utility functions and reusable components that should be of use in any
Java environment.

Lang 3.0 and onwards now targets Java 5.0, making use of features that arrived with Java 5.0 such as generics,
variable arguments, autoboxing, concurrency and formatted output.

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html

Apache Commons Lang, a package of Java utility classes for the
classes that are in java.lang's hierarchy, or are considered to be so
standard as to justify existence in java.lang.

This release is a bugfix for Restoring Bundle-SymbolicName in the MANIFEST.mf file.

Changes in this version include:


Fixed Bugs:
o LANG-1419: Restore BundleSymbolicName for OSGi



Historical list of changes: http://commons.apache.org/proper/commons-lang/changes-report.html

For complete information on Apache Commons Lang, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Lang website:

http://commons.apache.org/proper/commons-lang/

=============================================================================

Apache Commons Lang
Expand Down Expand Up @@ -74,14 +115,6 @@ o LANG-1367: ObjectUtils.identityToString(Object) and friends should allocate bu
o LANG-1405: Remove checks for java versions below the minimum supported one Thanks to Lars Grefer.
o LANG-1402: Null/index safe get methods for ArrayUtils Thanks to Mark Dacek.


Historical list of changes: http://commons.apache.org/proper/commons-lang/changes-report.html

For complete information on Apache Commons Lang, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Lang website:

http://commons.apache.org/proper/commons-lang/

=============================================================================

Apache Commons Lang
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -47,7 +47,7 @@
<connection>scm:git:http://git-wip-us.apache.org/repos/asf/commons-lang.git</connection>
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/commons-lang.git</developerConnection>
<url>https://git-wip-us.apache.org/repos/asf?p=commons-lang.git</url>
<tag>LANG_3_8</tag>
<tag>LANG_3_8_1</tag>
</scm>

<developers>
Expand Down Expand Up @@ -602,7 +602,7 @@
<commons.japicmp.version>0.11.1</commons.japicmp.version>

<!-- Commons Release Plugin -->
<commons.bc.version>3.7</commons.bc.version>
<commons.bc.version>3.8</commons.bc.version>
<commons.rc.version>RC1</commons.rc.version>
<commons.release.isDistModule>true</commons.release.isDistModule>
<commons.distSvnStagingUrl>scm:svn:https://dist.apache.org/repos/dist/dev/commons/lang</commons.distSvnStagingUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/changes/changes.xml
Expand Up @@ -45,7 +45,7 @@ The <action> type attribute can be add,update,fix,remove.
</properties>
<body>

<release version="3.8" date="2018-08-15" description="New features and bug fixes. Requires Java 7, supports Java 8, 9, 10.">
<release version="3.8.1" date="2018-09-19" description="This release is a bugfix for Restoring Bundle-SymbolicName in the MANIFEST.mf file.">
<action issue="LANG-1419" type="fix" dev="chtompki">Restore BundleSymbolicName for OSGi</action>
</release>

Expand Down

0 comments on commit eb5b11a

Please sign in to comment.