[maven-release-plugin]  copy for tag EXEC_1_0_1_RC4

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/exec/tags/EXEC_1_0_1_RC4@819731 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom.xml b/pom.xml
index 844d21d..1a60327 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
   <name>Commons Exec</name>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-exec</artifactId>
-  <version>1.0.1-SNAPSHOT</version>
+  <version>1.0.1</version>
   <description>A library to reliably execute external processes from within the JVM</description>
   <url>http://commons.apache.org/exec/</url>  
   
@@ -79,9 +79,9 @@
   </contributors>
   
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/exec/tags/EXEC_1_0_1_RC3</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/exec/tags/EXEC_1_0_1_RC3</developerConnection>
-    <url>http://svn.apache.org/viewvc/commons/proper/exec/tags/EXEC_1_0_1_RC3</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/exec/tags/EXEC_1_0_1_RC4</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/exec/tags/EXEC_1_0_1_RC4</developerConnection>
+    <url>http://svn.apache.org/viewvc/commons/proper/exec/tags/EXEC_1_0_1_RC4</url>
   </scm>
   
   <build>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 8ba05bb..eb191de 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -23,7 +23,13 @@
     <author email="sgoeschl@apache.org">Siegfried Goeschl</author>
   </properties>
   <body>
-    <release version="1.0.1" date="2009-09-23" description="Maintenance Release">
+    <release version="1.0.1" date="2009-09-28" description="Maintenance Release">
+      <action dev="henrib" type="fix" date="2009-09-25" issue="EXEC-33">
+        On a Mac, the unit tests never finish. Culprit is InputStreamPumper which 
+        sets its stop member in the run method; however, run might really be executed 
+        after the stopProcessing method is called if the process 
+        thread completes before the InputStreamPumper starts.
+      </action>
       <action dev="sgoeschl" type="fix" due-to="Peter Henderson" issue="EXEC-40">
         Fixes NPE in DefaultExecutor.setExitValues().
       </action>