diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 7cdf7c0..2197ca5 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,22 +1,31 @@
Apache Commons Logging
- Version 1.1.3
+ Version 1.2
RELEASE NOTES
-The Commons Logging team is pleased to announce the release of Apache Commons Logging 1.1.3
+The Apache Commons Logging team is pleased to announce
+the release of Apache Commons Logging 1.2
-Commons Logging is a thin adapter allowing configurable bridging to other,
-well known logging systems.
+Apache Commons Logging is a thin adapter allowing configurable
+bridging to other, well-known logging systems.
This is a maintenance release containing bug fixes.
+Java 1.2 or later is required.
Changes in this version include:
Fixed Bugs:
-o LOGGING-151: Use "org.apache.commons.logging" as bundle symbolic name. Thanks to Krzysztof Daniel.
+o LOGGING-37: Improve performance of LogFactory#getFactory() by calling
+ Thread#currentThread()#getContextClassLoader() directly instead
+ of using reflection. As a consequence support for JDK 1.1 has
+ been dropped. Thanks to Matthias Ernst, Archie Cobbs.
+o LOGGING-156: Fix SecurityAllowedTestCase when executed with OpenJDK 1.7 due
+ to an additional required RuntimePermission. Thanks to Mikolaj Izdebski.
+o LOGGING-157: Fix javadoc to comply with javadoc tool from jdk 1.8. Thanks to Ville Skyttä.
+
Historical list of changes: http://commons.apache.org/proper/commons-logging/changes-report.html
-For complete information on Commons Logging, including instructions on how to submit bug reports,
+For complete information on Apache Commons Logging, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Logging website:
http://commons.apache.org/proper/commons-logging/
\ No newline at end of file
diff --git a/build.xml b/build.xml
index b2ca788..998d570 100644
--- a/build.xml
+++ b/build.xml
@@ -94,7 +94,7 @@
We recommend you use a mirror to download our release
@@ -95,32 +95,32 @@ limitations under the License.
-
commons-logging-1.1.3-bin.tar.gz
- md5
- pgp
+ commons-logging-1.2-bin.tar.gz
+ md5
+ pgp
-
commons-logging-1.1.3-bin.zip
- md5
- pgp
+ commons-logging-1.2-bin.zip
+ md5
+ pgp
-
commons-logging-1.1.3-src.tar.gz
- md5
- pgp
+ commons-logging-1.2-src.tar.gz
+ md5
+ pgp
-
commons-logging-1.1.3-src.zip
- md5
- pgp
+ commons-logging-1.2-src.zip
+ md5
+ pgp
The main purpose of the 1.2 release is to drop support for Java 1.1.
+For a full list of changes since the 1.1.3 release, please refer to the + change-report.
+The 1.1.3 release only updates the Bundle-SymbolicName in the manifest to "org.apache.commons.logging".