You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2015/04/17 20:50:26 UTC

[1/5] [math] Preparing 3.5 release.

Repository: commons-math
Updated Branches:
  refs/heads/MATH_3_X 884524ae6 -> 9a0d06198


Preparing 3.5 release.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/7efda3f0
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/7efda3f0
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/7efda3f0

Branch: refs/heads/MATH_3_X
Commit: 7efda3f0a0941362e9e4152d0e0e92872a8ce8d3
Parents: 884524a
Author: Luc Maisonobe <lu...@apache.org>
Authored: Sun Apr 12 18:19:17 2015 +0200
Committer: Luc Maisonobe <lu...@apache.org>
Committed: Sun Apr 12 19:04:59 2015 +0200

----------------------------------------------------------------------
 RELEASE-NOTES.txt               | 40 ++++++++++++++++++++++--------------
 build.xml                       |  2 +-
 pom.xml                         |  6 +++---
 src/changes/changes.xml         | 27 +++++++++++++++++++++++-
 src/site/xdoc/download_math.xml | 26 +++++++++++------------
 src/userguide/pom.xml           |  2 +-
 6 files changed, 69 insertions(+), 34 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/7efda3f0/RELEASE-NOTES.txt
----------------------------------------------------------------------
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 94e476f..6a6ac4e 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,25 +1,35 @@
-
-              Apache Commons Math 3.4.1 RELEASE NOTES
-
-The Apache Commons Math team is pleased to announce the release of commons-math3-3.4.1
+The Apache Commons Math team is pleased to announce the commons-math3-3.5 release!
 
 The Apache Commons Math project is a library of lightweight, self-contained mathematics
 and statistics components addressing the most common practical problems not immediately
 available in the Java programming language or commons-lang.
 
-This is a maintenance release: It fixes issue MATH-1188.
-
 Changes in this version include:
 
+New features:
+o Added a way to build polyhedrons sets from a list of vertices and
+        facets specified using vertices indices. 
+o Simplified "FastMath#exp(double)" in order to avoid a potential
+        Java 1.5 JIT bug when calling with negative infinity as argument.  Issue: MATH-1198. 
+o Added method "getQuadraticMean()" to "DescriptiveStatistics"
+        and "SummaryStatistics" which calculates the root mean square.  Issue: MATH-1199. 
 
 Fixed Bugs:
-o MATH-1188:  Fixed non-Java1.5 code in BesselJ. 
-
-
-
-For complete information on Apache Commons Math, including instructions on how to submit bug reports,
-patches, or suggestions for improvement, see the Apache Commons Math website:
-
-http://commons.apache.org/proper/commons-math/
-
+o Moved FastMathTestPerformance out of the main test tree, as is is
+        a benchmark rather than a test.  Issue: MATH-1195. 
+o Fixed ignored method parameters in QRDecomposition protected methods.  Issue: MATH-1191. 
+o Fixed wrong selection of line/polyhedron intersection point.  Issue: MATH-1211. Thanks to Mike Zimmerman. 
+o Improved fix for corner cases in BSP-tree merging, when cut sub-hyperplanes vanish.  Issue: MATH-1162. 
+o Fixed link to algorithm description in "PoissonDistribution#sample()".  Issue: MATH-1209. Thanks to Jonathan Ogilvie. 
+o EmpiricalDistribution cumulativeProbability can return NaN when evaluated within a constant bin.  Issue: MATH-1208. 
+o EmpiricalDistribution getKernel fails for buckets with only multiple instances of the same value.  Issue: MATH-1203. 
+o "UnivariateSolverUtils#bracket(...)" sometimes failed to bracket
+        if a reached the lower bound.  Issue: MATH-1204. 
+
+Changes:
+o Added Laguerre complex solve methods taking maxEval parameters.  Issue: MATH-1213. 
+
+
+Have fun!
+-Apache Commons Math team
 

http://git-wip-us.apache.org/repos/asf/commons-math/blob/7efda3f0/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 09177b0..d205c29 100644
--- a/build.xml
+++ b/build.xml
@@ -50,7 +50,7 @@
   <property name="component.title"         value="Commons MATH"/>
 
   <!-- The current version number of this component -->
-  <property name="component.version"       value="3.1-SNAPSHOT"/>
+  <property name="component.version"       value="3.5"/>
 
   <!-- The base directory for component sources -->
   <property name="source.home"             value="src/main/java"/>

http://git-wip-us.apache.org/repos/asf/commons-math/blob/7efda3f0/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b0e266b..9c100e2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-math3</artifactId>
-  <version>3.5-SNAPSHOT</version>
+  <version>3.5</version>
   <name>Apache Commons Math</name>
 
   <inceptionYear>2003</inceptionYear>
@@ -363,9 +363,9 @@
     <!-- This value must reflect the current name of the base package. -->
     <commons.osgi.symbolicName>org.apache.commons.math3</commons.osgi.symbolicName>
     <!-- do not use snapshot suffix here -->
-    <commons.release.version>3.4.1</commons.release.version>
+    <commons.release.version>3.5</commons.release.version>
     <commons.release.desc>(requires Java 1.5+)</commons.release.desc>
-    <!-- <commons.rc.version>RC1</commons.rc.version> -->
+    <commons.rc.version>RC1</commons.rc.version>
     <commons.binary.suffix>-bin</commons.binary.suffix>
 
     <commons.release.2.version>2.2</commons.release.2.version>

http://git-wip-us.apache.org/repos/asf/commons-math/blob/7efda3f0/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index cd1f930..2be9918 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -50,7 +50,32 @@ If the output is not quite correct, check for invisible trailing spaces!
     <title>Commons Math Release Notes</title>
   </properties>
   <body>
-    <release version="3.5" date="TBD" description="TBD">
+    <release version="3.5" date="2015-04-16" description="
+This is a minor release: It combines bug fixes and new features.
+ Changes to existing features were made in a backwards-compatible
+ way such as to allow drop-in replacement of the v3.4.1 JAR file.
+  
+Most notable among the new features are:
+ getQuadraticMean method added to DescriptiveStatistics SummaryStatistics
+ which calculates the root mean square, and a way to build polyhedrons sets
+ from list of vertices and the facets they belong too. There have been
+ numerous bug fixes. See below for a full list.
+  
+The minimum version of the Java platform required to compile and use
+ Apache Commons Math is Java 5.
+  
+Users are encouraged to upgrade to this version as this release not
+ only includes bug fixes but also deprecates numerous classes and
+ methods that will be deleted from the next major release (4.0).
+  
+  Caveat:
+  1. The implementation of the BOBYQA optimization algorithm is in alpha
+  state (cf. MATH-621): Many code paths are untested, and we are looking
+  for volunteers to improve the code readability, robustness and performance
+  and to extend the unit tests suite.
+  2. A few methods in the FastMath class are in fact slower that their
+  counterpart in either Math or StrictMath (cf. MATH-740 and MATH-901).
+">
       <action dev="luc" type="fix" issue="MATH-1195">
         Moved FastMathTestPerformance out of the main test tree, as is is
         a benchmark rather than a test.

http://git-wip-us.apache.org/repos/asf/commons-math/blob/7efda3f0/src/site/xdoc/download_math.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/download_math.xml b/src/site/xdoc/download_math.xml
index a934068..3e6a093 100644
--- a/src/site/xdoc/download_math.xml
+++ b/src/site/xdoc/download_math.xml
@@ -95,32 +95,32 @@ limitations under the License.
       </p>
     </subsection>
     </section>
-    <section name="Apache Commons Math 3.4.1 (requires Java 1.5+)">
+    <section name="Apache Commons Math 3.5 (requires Java 1.5+)">
       <subsection name="Binaries">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/math/binaries/commons-math3-3.4.1-bin.tar.gz">commons-math3-3.4.1-bin.tar.gz</a></td>
-              <td><a href="http://www.apache.org/dist/commons/math/binaries/commons-math3-3.4.1-bin.tar.gz.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/math/binaries/commons-math3-3.4.1-bin.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/math/binaries/commons-math3-3.5-bin.tar.gz">commons-math3-3.5-bin.tar.gz</a></td>
+              <td><a href="http://www.apache.org/dist/commons/math/binaries/commons-math3-3.5-bin.tar.gz.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/math/binaries/commons-math3-3.5-bin.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/math/binaries/commons-math3-3.4.1-bin.zip">commons-math3-3.4.1-bin.zip</a></td>
-              <td><a href="http://www.apache.org/dist/commons/math/binaries/commons-math3-3.4.1-bin.zip.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/math/binaries/commons-math3-3.4.1-bin.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/math/binaries/commons-math3-3.5-bin.zip">commons-math3-3.5-bin.zip</a></td>
+              <td><a href="http://www.apache.org/dist/commons/math/binaries/commons-math3-3.5-bin.zip.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/math/binaries/commons-math3-3.5-bin.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>
       <subsection name="Source">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/math/source/commons-math3-3.4.1-src.tar.gz">commons-math3-3.4.1-src.tar.gz</a></td>
-              <td><a href="http://www.apache.org/dist/commons/math/source/commons-math3-3.4.1-src.tar.gz.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/math/source/commons-math3-3.4.1-src.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/math/source/commons-math3-3.5-src.tar.gz">commons-math3-3.5-src.tar.gz</a></td>
+              <td><a href="http://www.apache.org/dist/commons/math/source/commons-math3-3.5-src.tar.gz.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/math/source/commons-math3-3.5-src.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/math/source/commons-math3-3.4.1-src.zip">commons-math3-3.4.1-src.zip</a></td>
-              <td><a href="http://www.apache.org/dist/commons/math/source/commons-math3-3.4.1-src.zip.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/math/source/commons-math3-3.4.1-src.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/math/source/commons-math3-3.5-src.zip">commons-math3-3.5-src.zip</a></td>
+              <td><a href="http://www.apache.org/dist/commons/math/source/commons-math3-3.5-src.zip.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/math/source/commons-math3-3.5-src.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>

http://git-wip-us.apache.org/repos/asf/commons-math/blob/7efda3f0/src/userguide/pom.xml
----------------------------------------------------------------------
diff --git a/src/userguide/pom.xml b/src/userguide/pom.xml
index 1daa91f..1c5ee06 100644
--- a/src/userguide/pom.xml
+++ b/src/userguide/pom.xml
@@ -22,7 +22,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-math3-examples</artifactId>
-  <version>3.5-SNAPSHOT</version>  
+  <version>3.5</version>  
   <name>Commons Math User Guide</name>
   <inceptionYear>2003</inceptionYear>
   <description>Examples</description>


[3/5] [math] Wrap jgit buildnumber plugin in a profile triggered by .git exsiting.

Posted by lu...@apache.org.
Wrap jgit buildnumber plugin in a profile triggered by .git exsiting.

This should prevent numerous warnings when building from a source
archive instead of from git checkout.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/6e24e58f
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/6e24e58f
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/6e24e58f

Branch: refs/heads/MATH_3_X
Commit: 6e24e58ffbe8d65d2953242fa05310c8226e1f69
Parents: e30d37c
Author: Luc Maisonobe <lu...@apache.org>
Authored: Tue Apr 14 13:40:34 2015 +0200
Committer: Luc Maisonobe <lu...@apache.org>
Committed: Tue Apr 14 13:40:34 2015 +0200

----------------------------------------------------------------------
 pom.xml | 42 +++++++++++++++++++++++++++---------------
 1 file changed, 27 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/6e24e58f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9c100e2..70348af 100644
--- a/pom.xml
+++ b/pom.xml
@@ -527,21 +527,6 @@
           <additionalparam>-header &apos;&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&quot;&gt;&lt;/script&gt;&apos;</additionalparam>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>ru.concerteza.buildnumber</groupId>
-        <artifactId>maven-jgit-buildnumber-plugin</artifactId>
-        <version>${math.jgit.buildnumber.version}</version>
-        <executions>
-          <execution>
-            <phase>generate-resources</phase>
-            <goals>
-              <goal>extract-buildnumber</goal>
-            </goals>
-          </execution>
-        </executions>
-        <configuration>
-        </configuration>
-      </plugin>
     </plugins>
   </build>
 
@@ -693,6 +678,33 @@
 
   <profiles>
     <profile>
+      <id>jgit-buildnumber</id>
+      <activation>
+        <file>
+          <exists>.git</exists>
+        </file>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>ru.concerteza.buildnumber</groupId>
+            <artifactId>maven-jgit-buildnumber-plugin</artifactId>
+            <version>${math.jgit.buildnumber.version}</version>
+            <executions>
+              <execution>
+                <phase>generate-resources</phase>
+                <goals>
+                  <goal>extract-buildnumber</goal>
+                </goals>
+              </execution>
+            </executions>
+            <configuration>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
       <id>setup-checkout</id>
       <activation>
         <file>


[2/5] [math] Fixed test incompatibility with Java5.

Posted by lu...@apache.org.
Fixed test incompatibility with Java5.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/e30d37c7
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/e30d37c7
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/e30d37c7

Branch: refs/heads/MATH_3_X
Commit: e30d37c71b1e0106446073d66e16932b9927d90a
Parents: 7efda3f
Author: Luc Maisonobe <lu...@apache.org>
Authored: Tue Apr 14 13:28:02 2015 +0200
Committer: Luc Maisonobe <lu...@apache.org>
Committed: Tue Apr 14 13:28:02 2015 +0200

----------------------------------------------------------------------
 src/changes/changes.xml                                 |  2 +-
 .../geometry/euclidean/threed/PolyhedronsSetTest.java   | 12 +++++++++---
 2 files changed, 10 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/e30d37c7/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 2be9918..26940bf 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -50,7 +50,7 @@ If the output is not quite correct, check for invisible trailing spaces!
     <title>Commons Math Release Notes</title>
   </properties>
   <body>
-    <release version="3.5" date="2015-04-16" description="
+    <release version="3.5" date="2015-04-17" description="
 This is a minor release: It combines bug fixes and new features.
  Changes to existing features were made in a backwards-compatible
  way such as to allow drop-in replacement of the v3.4.1 JAR file.

http://git-wip-us.apache.org/repos/asf/commons-math/blob/e30d37c7/src/test/java/org/apache/commons/math3/geometry/euclidean/threed/PolyhedronsSetTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/math3/geometry/euclidean/threed/PolyhedronsSetTest.java b/src/test/java/org/apache/commons/math3/geometry/euclidean/threed/PolyhedronsSetTest.java
index b4be154..10ae3d5 100644
--- a/src/test/java/org/apache/commons/math3/geometry/euclidean/threed/PolyhedronsSetTest.java
+++ b/src/test/java/org/apache/commons/math3/geometry/euclidean/threed/PolyhedronsSetTest.java
@@ -394,9 +394,15 @@ public class PolyhedronsSetTest {
 
     @Test
     public void testFacet2Vertices() throws IOException, ParseException {
-        checkError(Arrays.asList(Vector3D.ZERO, Vector3D.PLUS_I, Vector3D.PLUS_J, Vector3D.PLUS_K),
-                   Arrays.asList(new int[] { 0, 1, 2 }, new int[] {2, 3}),
-                   LocalizedFormats.WRONG_NUMBER_OF_POINTS);
+        List<Vector3D> vertices = new ArrayList<Vector3D>();
+        vertices.add(Vector3D.ZERO);
+        vertices.add(Vector3D.PLUS_I);
+        vertices.add(Vector3D.PLUS_J);
+        vertices.add(Vector3D.PLUS_K);
+        List<int[]> facets = new ArrayList<int[]>();
+        facets.add(new int[] { 0, 1, 2 });
+        facets.add(new int[] {2, 3});
+        checkError(vertices, facets, LocalizedFormats.WRONG_NUMBER_OF_POINTS);
     }
 
     private void checkError(final String resourceName, final LocalizedFormats expected) {


[4/5] [math] Removed spurious (for Java 5) @Override.

Posted by lu...@apache.org.
Removed spurious (for Java 5) @Override.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/b3c5dae8
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/b3c5dae8
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/b3c5dae8

Branch: refs/heads/MATH_3_X
Commit: b3c5dae8f253fcb4484e5cd3cc5662587803efc2
Parents: 6e24e58
Author: Luc Maisonobe <lu...@apache.org>
Authored: Tue Apr 14 13:56:59 2015 +0200
Committer: Luc Maisonobe <lu...@apache.org>
Committed: Tue Apr 14 13:56:59 2015 +0200

----------------------------------------------------------------------
 .../apache/commons/math3/geometry/partitioning/RegionDumper.java  | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/b3c5dae8/src/test/java/org/apache/commons/math3/geometry/partitioning/RegionDumper.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/math3/geometry/partitioning/RegionDumper.java b/src/test/java/org/apache/commons/math3/geometry/partitioning/RegionDumper.java
index 33be9d7..fae3fd8 100644
--- a/src/test/java/org/apache/commons/math3/geometry/partitioning/RegionDumper.java
+++ b/src/test/java/org/apache/commons/math3/geometry/partitioning/RegionDumper.java
@@ -204,13 +204,11 @@ public class RegionDumper {
         protected abstract void formatHyperplane(Hyperplane<S> hyperplane);
 
         /** {@inheritDoc} */
-        @Override
         public Order visitOrder(final BSPTree<S> node) {
             return Order.SUB_MINUS_PLUS;
         }
 
         /** {@inheritDoc} */
-        @Override
         public void visitInternalNode(final BSPTree<S> node) {
             formatter.format("%s %s internal ", prefix, type(node));
             formatHyperplane(node.getCut().getHyperplane());
@@ -219,7 +217,6 @@ public class RegionDumper {
         }
 
         /** {@inheritDoc} */
-        @Override
         public void visitLeafNode(final BSPTree<S> node) {
             formatter.format("%s %s leaf %s%n",
                              prefix, type(node), node.getAttribute());


[5/5] [math] Preparing for next release in the 3.X branch.

Posted by lu...@apache.org.
Preparing for next release in the 3.X branch.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/9a0d0619
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/9a0d0619
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/9a0d0619

Branch: refs/heads/MATH_3_X
Commit: 9a0d061981587382b60eae9eaaa6eff6a408911a
Parents: b3c5dae
Author: Luc Maisonobe <lu...@apache.org>
Authored: Fri Apr 17 16:54:40 2015 +0200
Committer: Luc Maisonobe <lu...@apache.org>
Committed: Fri Apr 17 16:54:40 2015 +0200

----------------------------------------------------------------------
 doap_math.rdf           | 5 +++++
 pom.xml                 | 4 ++--
 src/changes/changes.xml | 2 ++
 3 files changed, 9 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/9a0d0619/doap_math.rdf
----------------------------------------------------------------------
diff --git a/doap_math.rdf b/doap_math.rdf
index 2903a63..a728234 100644
--- a/doap_math.rdf
+++ b/doap_math.rdf
@@ -38,6 +38,11 @@
     <release>
       <Version>
         <name>commons-math</name>
+        <created>2015-04-17</created>
+        <revision>3.5</revision>
+      </Version>
+      <Version>
+        <name>commons-math</name>
         <created>2015-01-11</created>
         <revision>3.4.1</revision>
       </Version>

http://git-wip-us.apache.org/repos/asf/commons-math/blob/9a0d0619/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 70348af..223b316 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-math3</artifactId>
-  <version>3.5</version>
+  <version>3.6-SNAPSHOT</version>
   <name>Apache Commons Math</name>
 
   <inceptionYear>2003</inceptionYear>
@@ -365,7 +365,7 @@
     <!-- do not use snapshot suffix here -->
     <commons.release.version>3.5</commons.release.version>
     <commons.release.desc>(requires Java 1.5+)</commons.release.desc>
-    <commons.rc.version>RC1</commons.rc.version>
+    <!-- <commons.rc.version>RC1</commons.rc.version> -->
     <commons.binary.suffix>-bin</commons.binary.suffix>
 
     <commons.release.2.version>2.2</commons.release.2.version>

http://git-wip-us.apache.org/repos/asf/commons-math/blob/9a0d0619/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 26940bf..609835d 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -50,6 +50,8 @@ If the output is not quite correct, check for invisible trailing spaces!
     <title>Commons Math Release Notes</title>
   </properties>
   <body>
+    <release version="TBD" date="TBD" description="TBD">
+    </release>
     <release version="3.5" date="2015-04-17" description="
 This is a minor release: It combines bug fixes and new features.
  Changes to existing features were made in a backwards-compatible