You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/09/29 16:32:32 UTC

[commons-net] branch master updated: Prepare for 3.7.1 RC1.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-net.git


The following commit(s) were added to refs/heads/master by this push:
     new 1a08f3b  Prepare for 3.7.1 RC1.
1a08f3b is described below

commit 1a08f3b2fc30f74f36508925ddef6c307dea1c2f
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Sep 29 12:32:27 2020 -0400

    Prepare for 3.7.1 RC1.
---
 README.md                      |  7 ++++---
 RELEASE-NOTES.txt              | 34 ++++++++++++++++++++++++++++++++++
 pom.xml                        | 10 ++++++----
 src/changes/changes.xml        |  2 +-
 src/changes/release-notes.vm   |  2 +-
 src/site/xdoc/download_net.xml | 26 +++++++++++++-------------
 6 files changed, 59 insertions(+), 22 deletions(-)

diff --git a/README.md b/README.md
index 1028b25..9bf0d66 100644
--- a/README.md
+++ b/README.md
@@ -43,10 +43,11 @@
 Apache Commons Net
 ===================
 
-[![Build Status](https://travis-ci.org/apache/commons-net.svg)](https://travis-ci.org/apache/commons-net)
+[![Travis-CI Status](https://travis-ci.org/apache/commons-net.svg)](https://travis-ci.org/apache/commons-net)
+[![GitHub Actions Status](https://github.com/apache/commons-net/workflows/Java%20CI/badge.svg)](https://github.com/apache/commons-net/actions)
 [![Coverage Status](https://coveralls.io/repos/apache/commons-net/badge.svg)](https://coveralls.io/r/apache/commons-net)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/commons-net/commons-net/badge.svg)](https://maven-badges.herokuapp.com/maven-central/commons-net/commons-net/)
-[![Javadocs](https://javadoc.io/badge/commons-net/commons-net/3.7.svg)](https://javadoc.io/doc/commons-net/commons-net/3.7)
+[![Javadocs](https://javadoc.io/badge/commons-net/commons-net/3.7.1.svg)](https://javadoc.io/doc/commons-net/commons-net/3.7.1)
 
 Apache Commons Net library contains a collection of network utilities and protocol implementations.
 Supported protocols include: Echo, Finger, FTP, NNTP, NTP, POP3(S), SMTP(S), Telnet, Whois
@@ -68,7 +69,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>commons-net</groupId>
   <artifactId>commons-net</artifactId>
-  <version>3.7</version>
+  <version>3.7.1</version>
 </dependency>
 ```
 
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 207e8ca..0923e74 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,3 +1,37 @@
+              Apache Commons Net 3.7.1
+                  RELEASE NOTES
+
+The Apache Commons Net team is pleased to announce the release of Apache Commons Net 3.7.1
+
+Apache Commons Net library contains a collection of network utilities and protocol implementations.
+Supported protocols include: Echo, Finger, FTP, NNTP, NTP, POP3(S), SMTP(S), Telnet, Whois
+
+
+Maintenance and bug fix release.
+
+For complete information on Apache Commons Net, including instructions on how to submit bug reports,
+patches, or suggestions for improvement, see the Apache Apache Commons Net website:
+
+https://commons.apache.org/proper/commons-net/
+
+Download page: https://commons.apache.org/proper/commons-net/download_validator.cgi
+
+Changes in this version include:
+===============================
+
+Fixed Bugs:
+o NET-687:  [FTPS] javax.net.ssl.SSLException: Unsupported or unrecognized SSL message, #59. Thanks to Gary Gregory, Mikael, j-verse.
+o NET-673:  Update actions/checkout from v2.3.1 to v2.3.3 #56, #61. Thanks to Dependabot.
+o NET-673:  Update actions/setup-java from v1.4.0 to v1.4.2 #58. Thanks to Dependabot.
+
+
+Historical list of changes: https://commons.apache.org/proper/commons-net/changes-report.html
+
+Enjoy!
+-Apache Commons Net team
+
+-----------------------------------------------------------------------------
+
               Apache Commons Net 3.7
                   RELEASE NOTES
 
diff --git a/pom.xml b/pom.xml
index 1ac0f0d..b4065a7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
 
     <groupId>commons-net</groupId>
     <artifactId>commons-net</artifactId>
-    <version>3.8-SNAPSHOT</version>
+    <version>3.7.1-SNAPSHOT</version>
     <name>Apache Commons Net</name>
     <!-- N.B. the description content is deliberately not indented
      ! to improve the layout of the Release Notes generated by mvn changes:announcement-generate
@@ -54,13 +54,15 @@ Supported protocols include: Echo, Finger, FTP, NNTP, NTP, POP3(S), SMTP(S), Tel
         <commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-net</commons.scmPubUrl>
 
         <!-- Current release -->
-        <commons.release.version>3.7</commons.release.version>
-        <commons.rc.version>RC2</commons.rc.version>
+        <commons.release.version>3.7.1</commons.release.version>
+        <commons.rc.version>RC1</commons.rc.version>
         <commons.release.desc>(Requires Java ${maven.compiler.target} or later)</commons.release.desc>
 
         <!-- Release plugin defines -->
-        <commons.bc.version>3.6</commons.bc.version>
+        <commons.bc.version>3.7</commons.bc.version>
         <commons.release.isDistModule>true</commons.release.isDistModule>
+        <commons.releaseManagerName>Gary Gregory</commons.releaseManagerName>    
+        <commons.releaseManagerKey>86fdc7e2a11262cb</commons.releaseManagerKey>
         <!-- Local version defines -->
         <commons.changes.onlyCurrentVersion>true</commons.changes.onlyCurrentVersion>
     </properties>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 98e0e99..8b5630c 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -63,7 +63,7 @@ The <action> type attribute can be add,update,fix,remove.
      -->
 
     <body>
-        <release version="3.8" date="20YY-MM-DD" description="TBD">
+        <release version="3.7.1" date="20YY-MM-DD" description="Maintenance and bug fix release.">
             <action issue="NET-687" type="fix" dev="ggregory" due-to="Gary Gregory, Mikael, j-verse">
             [FTPS] javax.net.ssl.SSLException: Unsupported or unrecognized SSL message, #59.
             </action>
diff --git a/src/changes/release-notes.vm b/src/changes/release-notes.vm
index 21c656a..d67f927 100644
--- a/src/changes/release-notes.vm
+++ b/src/changes/release-notes.vm
@@ -126,4 +126,4 @@ Removed:
 Historical list of changes: ${project.url}changes-report.html
 
 Enjoy!
--Apache Commons Validator team
+-Apache Commons Net team
diff --git a/src/site/xdoc/download_net.xml b/src/site/xdoc/download_net.xml
index e286969..e11cb2c 100644
--- a/src/site/xdoc/download_net.xml
+++ b/src/site/xdoc/download_net.xml
@@ -113,32 +113,32 @@ limitations under the License.
       </p>
     </subsection>
     </section>
-    <section name="Apache Commons Net 3.7 (Requires Java 1.7 or later)">
+    <section name="Apache Commons Net 3.7.1 (Requires Java 1.7 or later)">
       <subsection name="Binaries">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/net/binaries/commons-net-3.7-bin.tar.gz">commons-net-3.7-bin.tar.gz</a></td>
-              <td><a href="https://www.apache.org/dist/commons/net/binaries/commons-net-3.7-bin.tar.gz.sha512">sha512</a></td>
-              <td><a href="https://www.apache.org/dist/commons/net/binaries/commons-net-3.7-bin.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/net/binaries/commons-net-3.7.1-bin.tar.gz">commons-net-3.7.1-bin.tar.gz</a></td>
+              <td><a href="https://www.apache.org/dist/commons/net/binaries/commons-net-3.7.1-bin.tar.gz.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/net/binaries/commons-net-3.7.1-bin.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/net/binaries/commons-net-3.7-bin.zip">commons-net-3.7-bin.zip</a></td>
-              <td><a href="https://www.apache.org/dist/commons/net/binaries/commons-net-3.7-bin.zip.sha512">sha512</a></td>
-              <td><a href="https://www.apache.org/dist/commons/net/binaries/commons-net-3.7-bin.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/net/binaries/commons-net-3.7.1-bin.zip">commons-net-3.7.1-bin.zip</a></td>
+              <td><a href="https://www.apache.org/dist/commons/net/binaries/commons-net-3.7.1-bin.zip.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/net/binaries/commons-net-3.7.1-bin.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>
       <subsection name="Source">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/net/source/commons-net-3.7-src.tar.gz">commons-net-3.7-src.tar.gz</a></td>
-              <td><a href="https://www.apache.org/dist/commons/net/source/commons-net-3.7-src.tar.gz.sha512">sha512</a></td>
-              <td><a href="https://www.apache.org/dist/commons/net/source/commons-net-3.7-src.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/net/source/commons-net-3.7.1-src.tar.gz">commons-net-3.7.1-src.tar.gz</a></td>
+              <td><a href="https://www.apache.org/dist/commons/net/source/commons-net-3.7.1-src.tar.gz.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/net/source/commons-net-3.7.1-src.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/net/source/commons-net-3.7-src.zip">commons-net-3.7-src.zip</a></td>
-              <td><a href="https://www.apache.org/dist/commons/net/source/commons-net-3.7-src.zip.sha512">sha512</a></td>
-              <td><a href="https://www.apache.org/dist/commons/net/source/commons-net-3.7-src.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/net/source/commons-net-3.7.1-src.zip">commons-net-3.7.1-src.zip</a></td>
+              <td><a href="https://www.apache.org/dist/commons/net/source/commons-net-3.7.1-src.zip.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/net/source/commons-net-3.7.1-src.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>