From: <dgr...@us...> - 2009-06-26 02:53:08
|
Revision: 10552 http://x10.svn.sourceforge.net/x10/?rev=10552&view=rev Author: dgrove-oss Date: 2009-06-26 01:45:12 +0000 (Fri, 26 Jun 2009) Log Message: ----------- Bump x10c and x10cpp version numbers to 1.8 on the trunk. We'll use 1.8.x while we're supporting a hybrid language with a mix of 1.7 and 2.0 features. After we remove 1.7 support, we'll increment version number to 1.9.x and then to 2.0.0. Modified Paths: -------------- trunk/x10.compiler.p3/src/polyglot/ext/x10/Version.java trunk/x10.cppbackend.17/src/polyglot/ext/x10cpp/Version.java Modified: trunk/x10.compiler.p3/src/polyglot/ext/x10/Version.java =================================================================== --- trunk/x10.compiler.p3/src/polyglot/ext/x10/Version.java 2009-06-25 18:32:27 UTC (rev 10551) +++ trunk/x10.compiler.p3/src/polyglot/ext/x10/Version.java 2009-06-26 01:45:12 UTC (rev 10552) @@ -14,6 +14,6 @@ public String name() { return "x10"; } public int major() { return 1; } - public int minor() { return 7; } - public int patch_level() { return 4; } + public int minor() { return 8; } + public int patch_level() { return 0; } } Modified: trunk/x10.cppbackend.17/src/polyglot/ext/x10cpp/Version.java =================================================================== --- trunk/x10.cppbackend.17/src/polyglot/ext/x10cpp/Version.java 2009-06-25 18:32:27 UTC (rev 10551) +++ trunk/x10.cppbackend.17/src/polyglot/ext/x10cpp/Version.java 2009-06-26 01:45:12 UTC (rev 10552) @@ -13,6 +13,6 @@ public String name() { return "x10c++"; } public int major() { return 1; } - public int minor() { return 7; } - public int patch_level() { return 4; } + public int minor() { return 8; } + public int patch_level() { return 0; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |