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/12/03 19:30:09 UTC

[commons-vfs] branch master updated: Add ability to remove a provider from DefaultFileSystemManager #149.

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-vfs.git


The following commit(s) were added to refs/heads/master by this push:
     new 2b63ee8  Add ability to remove a provider from DefaultFileSystemManager #149.
2b63ee8 is described below

commit 2b63ee8f3d7e46284612ce4bb1e8d8d012cff337
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Dec 3 14:30:05 2020 -0500

    Add ability to remove a provider from DefaultFileSystemManager #149.
    
    Change version from 2.7.1 to 2.8.0 since we added an API.
---
 commons-vfs2-distribution/pom.xml |  4 ++--
 commons-vfs2-examples/pom.xml     |  4 ++--
 commons-vfs2-jackrabbit1/pom.xml  |  2 +-
 commons-vfs2-jackrabbit2/pom.xml  |  2 +-
 commons-vfs2-sandbox/pom.xml      |  4 ++--
 commons-vfs2/pom.xml              |  4 ++--
 pom.xml                           | 10 +++++-----
 src/changes/changes.xml           |  9 ++++++---
 8 files changed, 21 insertions(+), 18 deletions(-)

diff --git a/commons-vfs2-distribution/pom.xml b/commons-vfs2-distribution/pom.xml
index 9f7f951..4ee79ff 100644
--- a/commons-vfs2-distribution/pom.xml
+++ b/commons-vfs2-distribution/pom.xml
@@ -22,14 +22,14 @@ limitations under the License.
 
   <name>Apache Commons VFS Distribution</name>
   <artifactId>commons-vfs2-distribution</artifactId>
-  <version>2.7.1-SNAPSHOT</version>
+  <version>2.8.0-SNAPSHOT</version>
   <packaging>pom</packaging>
   <description>Apache Commons VFS is a Virtual File System library - Distribution archives.</description>
 
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-vfs2-project</artifactId>
-    <version>2.7.1-SNAPSHOT</version>
+    <version>2.8.0-SNAPSHOT</version>
     <relativePath>../</relativePath>
   </parent>
 
diff --git a/commons-vfs2-examples/pom.xml b/commons-vfs2-examples/pom.xml
index 5144678..21fd005 100644
--- a/commons-vfs2-examples/pom.xml
+++ b/commons-vfs2-examples/pom.xml
@@ -23,13 +23,13 @@
 
   <name>Apache Commons VFS Examples</name>
   <artifactId>commons-vfs2-examples</artifactId>
-  <version>2.7.1-SNAPSHOT</version>
+  <version>2.8.0-SNAPSHOT</version>
   <description>Apache Commons VFS is a Virtual File System library - Examples.</description>
 
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-vfs2-project</artifactId>
-    <version>2.7.1-SNAPSHOT</version>
+    <version>2.8.0-SNAPSHOT</version>
     <relativePath>../</relativePath>
   </parent>
 
diff --git a/commons-vfs2-jackrabbit1/pom.xml b/commons-vfs2-jackrabbit1/pom.xml
index f42e973..5079f43 100644
--- a/commons-vfs2-jackrabbit1/pom.xml
+++ b/commons-vfs2-jackrabbit1/pom.xml
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-vfs2-project</artifactId>
-    <version>2.7.1-SNAPSHOT</version>
+    <version>2.8.0-SNAPSHOT</version>
     <relativePath>../</relativePath>
   </parent>
 
diff --git a/commons-vfs2-jackrabbit2/pom.xml b/commons-vfs2-jackrabbit2/pom.xml
index 26ec04f..fd1bd85 100644
--- a/commons-vfs2-jackrabbit2/pom.xml
+++ b/commons-vfs2-jackrabbit2/pom.xml
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-vfs2-project</artifactId>
-    <version>2.7.1-SNAPSHOT</version>
+    <version>2.8.0-SNAPSHOT</version>
     <relativePath>../</relativePath>
   </parent>
 
diff --git a/commons-vfs2-sandbox/pom.xml b/commons-vfs2-sandbox/pom.xml
index 47ac154..b5efc74 100644
--- a/commons-vfs2-sandbox/pom.xml
+++ b/commons-vfs2-sandbox/pom.xml
@@ -23,13 +23,13 @@
 
   <name>Apache Commons VFS Sandbox</name>
   <artifactId>commons-vfs2-sandbox</artifactId>
-  <version>2.7.1-SNAPSHOT</version>
+  <version>2.8.0-SNAPSHOT</version>
   <description>Apache Commons VFS is a Virtual File System library - Sandbox.</description>
 
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-vfs2-project</artifactId>
-    <version>2.7.1-SNAPSHOT</version>
+    <version>2.8.0-SNAPSHOT</version>
     <relativePath>../</relativePath>
   </parent>
 
diff --git a/commons-vfs2/pom.xml b/commons-vfs2/pom.xml
index 869093b..f37eba4 100644
--- a/commons-vfs2/pom.xml
+++ b/commons-vfs2/pom.xml
@@ -23,14 +23,14 @@
 
   <name>Apache Commons VFS</name>
   <artifactId>commons-vfs2</artifactId>
-  <version>2.7.1-SNAPSHOT</version>
+  <version>2.8.0-SNAPSHOT</version>
   <description>Apache Commons VFS is a Virtual File System library.</description>
   <url>http://commons.apache.org/proper/commons-vfs/</url>
 
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-vfs2-project</artifactId>
-    <version>2.7.1-SNAPSHOT</version>
+    <version>2.8.0-SNAPSHOT</version>
     <relativePath>../</relativePath>
   </parent>
 
diff --git a/pom.xml b/pom.xml
index 08fb3f0..b720707 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@
   <name>Apache Commons VFS Project</name>
   <description>Apache Commons VFS is a Virtual File System library.</description>
   <packaging>pom</packaging>
-  <version>2.7.1-SNAPSHOT</version>
+  <version>2.8.0-SNAPSHOT</version>
 
   <url>http://commons.apache.org/proper/commons-vfs/</url>
   <inceptionYear>2002</inceptionYear>
@@ -52,7 +52,7 @@
     <connection>scm:git:https://gitbox.apache.org/repos/asf/commons-vfs.git</connection>
     <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-vfs.git</developerConnection>
     <url>https://gitbox.apache.org/repos/asf?p=commons-vfs.git</url>
-    <tag>commons-vfs-project-2.7.0</tag>
+    <tag>commons-vfs-project-2.8.0</tag>
   </scm>
 
   <developers>
@@ -160,12 +160,12 @@
     <commons.siteOutputDirectory>${basedir}/../target/site</commons.siteOutputDirectory>
     <commons.releaseNotesLocation>${basedir}/../RELEASE-NOTES.txt</commons.releaseNotesLocation>
     <commons.distSvnStagingUrl>scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid}</commons.distSvnStagingUrl>
-    <commons.release.version>2.7.0</commons.release.version>
+    <commons.release.version>2.8.0</commons.release.version>
     <!-- Commons Release Plugin -->
-    <commons.bc.version>2.6.0</commons.bc.version>
+    <commons.bc.version>2.7.0</commons.bc.version>
     <commons.releaseManagerName>Gary Gregory</commons.releaseManagerName>    
     <commons.releaseManagerKey>86fdc7e2a11262cb</commons.releaseManagerKey>  
-    <commons.rc.version>RC3</commons.rc.version>
+    <commons.rc.version>RC1</commons.rc.version>
     <commons.release.name>commons-vfs-${commons.release.version}</commons.release.name>
     <commons.release.desc>(requires Java 8)</commons.release.desc>
 
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 3b88ce4..2662213 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -45,13 +45,16 @@ The <action> type attribute can be add,update,fix,remove.
   </properties>
 
   <body>
-    <release version="2.7.1" date="20YY-MM-DD" description="Maintenance release. Requires Java 8.">
+    <release version="2.8.0" date="20YY-MM-DD" description="Maintenance release. Requires Java 8.">
 <!--       <action issue="VFS-443" dev="ggregory" type="update" due-to="nickallen"> -->
 <!--        [Local] Need an easy way to convert from a FileObject to a File. -->
 <!--       </action> -->
 <!-- START Might need to be moved to the next version -->
-      <!-- FIXES -->
-      <action devissue="VFS-748" dev="ggregory" due-to="PeterAlfredLee, Gary Gregory" type="update">
+      <!-- ADDS -->
+      <action dev="ggregory" due-to="Boris Petrov, Gary Gregory" type="update">
+        Add ability to remove a provider from DefaultFileSystemManager #149.
+      </action>
+      <action issue="VFS-748" dev="ggregory" due-to="PeterAlfredLee, Gary Gregory" type="update">
         TarProvider Incorrectly marks file IMAGINARY after garbage collection with WeakRefFilesCache, #97.
       </action>
       <!-- UPDATES -->