Repository: reef
Updated Branches:
  refs/heads/master 93ef5013d -> b37cc1f0a


[REEF-1848] Update version to 0.17.0-SNAPSHOT

  * Update versions to 0.17-SNAPSHOT for POM and all other files
  * Add build.DotNet.props and ReefOnSpark.scala in change_version.py

JIRA:
  [REEF-1848](https://issues.apache.org/jira/browse/REEF-1848)

Pull Request:
  This closes #1353


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

Branch: refs/heads/master
Commit: b37cc1f0a34b52ea30a627e3cc6914a118006e16
Parents: 93ef501
Author: taegeonum <taegeo...@gmail.com>
Authored: Fri Aug 4 10:24:33 2017 +0900
Committer: Markus Weimer <wei...@apache.org>
Committed: Tue Aug 8 07:53:59 2017 -0700

----------------------------------------------------------------------
 Doxyfile                                        |  2 +-
 dev/change_version.py                           | 60 ++++++++++++++++++++
 lang/cs/Org.Apache.REEF.Bridge/AssemblyInfo.cpp |  4 +-
 .../Properties/Resources.xml                    |  8 +--
 lang/cs/Org.Apache.REEF.Client/run.cmd          |  2 +-
 .../Org.Apache.REEF.ClrDriver/AssemblyInfo.cpp  |  2 +-
 .../DriverConfigGenerator.cs                    |  2 +-
 lang/cs/SharedAssemblyInfo.cs                   |  4 +-
 lang/cs/build.DotNet.props                      |  2 +-
 lang/cs/build.props                             |  2 +-
 lang/cs/pom.xml                                 |  2 +-
 lang/java/reef-annotations/pom.xml              |  2 +-
 lang/java/reef-applications/pom.xml             |  2 +-
 lang/java/reef-applications/reef-vortex/pom.xml |  2 +-
 lang/java/reef-bridge-client/pom.xml            |  2 +-
 lang/java/reef-bridge-java/pom.xml              |  2 +-
 lang/java/reef-checkpoint/pom.xml               |  2 +-
 lang/java/reef-common/pom.xml                   |  2 +-
 lang/java/reef-examples-clr/pom.xml             |  2 +-
 lang/java/reef-examples-hdinsight/pom.xml       |  2 +-
 lang/java/reef-examples/pom.xml                 |  2 +-
 lang/java/reef-experimental/pom.xml             |  2 +-
 lang/java/reef-io/pom.xml                       |  2 +-
 lang/java/reef-poison/pom.xml                   |  2 +-
 lang/java/reef-runtime-hdinsight/pom.xml        |  2 +-
 lang/java/reef-runtime-local/pom.xml            |  2 +-
 lang/java/reef-runtime-mesos/pom.xml            |  2 +-
 lang/java/reef-runtime-multi/pom.xml            |  2 +-
 lang/java/reef-runtime-standalone/pom.xml       |  2 +-
 lang/java/reef-runtime-yarn/pom.xml             |  2 +-
 lang/java/reef-tang/pom.xml                     |  2 +-
 lang/java/reef-tang/tang-test-jarA/pom.xml      |  2 +-
 lang/java/reef-tang/tang-test-jarAB/pom.xml     |  2 +-
 .../reef-tang/tang-test-jarB-conflictA/pom.xml  |  2 +-
 lang/java/reef-tang/tang-test-jarB/pom.xml      |  2 +-
 lang/java/reef-tang/tang-tint/pom.xml           |  2 +-
 lang/java/reef-tang/tang/pom.xml                |  2 +-
 lang/java/reef-tests/pom.xml                    |  2 +-
 lang/java/reef-utils-hadoop/pom.xml             |  2 +-
 lang/java/reef-utils/pom.xml                    |  2 +-
 lang/java/reef-wake/pom.xml                     |  2 +-
 lang/java/reef-wake/wake/pom.xml                |  2 +-
 lang/java/reef-webserver/pom.xml                |  2 +-
 lang/scala/reef-examples-scala/pom.xml          |  2 +-
 .../reef/examples/hellospark/ReefOnSpark.scala  |  2 +-
 pom.xml                                         |  2 +-
 website/pom.xml                                 |  2 +-
 47 files changed, 111 insertions(+), 51 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/Doxyfile
----------------------------------------------------------------------
diff --git a/Doxyfile b/Doxyfile
index dde8d29..0220bd8 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -21,7 +21,7 @@
 
 DOXYFILE_ENCODING      = UTF-8
 PROJECT_NAME           = "Apache REEF"
-PROJECT_NUMBER         = 0.16.0-SNAPSHOT
+PROJECT_NUMBER         = 0.17.0-SNAPSHOT
 PROJECT_BRIEF          = "Retainable Evaluator Execution Framework"
 OUTPUT_DIRECTORY       = target
 JAVADOC_AUTOBRIEF      = YES

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/dev/change_version.py
----------------------------------------------------------------------
diff --git a/dev/change_version.py b/dev/change_version.py
index e8dcd84..ce46ad2 100644
--- a/dev/change_version.py
+++ b/dev/change_version.py
@@ -146,6 +146,60 @@ def change_assembly_info_cs(file, new_version):
     f.close()
 
 """
+Change Version in lang/cs/build.DotNet.props 
+"""
+def change_dotnet_props_cs(file, new_version):
+    changed_str = ""
+    new_version = new_version
+    if "SNAPSHOT" in new_version:
+      new_version = new_version.split("-")[0]
+
+    f = open(file, 'r')
+    r = re.compile('<Version>(.*?)</Version>')
+
+    while True:
+        line = f.readline()
+        if not line:
+            break
+        if "<Version>" in line and "</Version>" in line:
+            m = r.search(line)
+            old_version = m.group(1)
+            changed_str += line.replace(old_version, new_version)
+        else:
+            changed_str += line
+    f.close()
+
+    f = open(file, 'w')
+    f.write(changed_str)
+    f.close()
+
+"""
+Change ReefOnSpark.scala in 
lang/scala/reef-examples-scala/.../hellospark/ReefOnSpark.scala
+"""
+def change_reef_on_spark_scala(file, new_version):
+    changed_str = ""
+
+    f = open(file, 'r')
+
+    while True:
+        line = f.readline()
+        if not line:
+            break
+        if "reef-examples-spark" in line and "-shaded.jar":
+            r = re.compile("//.*reef-examples-spark-(.*?)-shaded\.jar")
+            m = r.search(line)
+            old_version = m.group(1)
+            changed_str += line.replace(old_version, new_version)
+        else:
+            changed_str += line
+    f.close()
+
+    f = open(file, 'w')
+    f.write(changed_str)
+    f.close()
+
+
+"""
 Read 'IsSnapshot' from lang/cs/build.props
 """
 def read_is_snapshot(file):
@@ -287,6 +341,12 @@ def change_version(reef_home, new_version, pom_only):
         change_project_number_Doxyfile(reef_home + "/Doxyfile", new_version)
         print reef_home + "/Doxyfile"
 
+        change_dotnet_props_cs(reef_home + "/lang/cs/build.DotNet.props", 
new_version)
+        print reef_home + "/lang/cs/build.DotNet.props"
+
+        change_reef_on_spark_scala(reef_home + 
"/lang/scala/reef-examples-scala/src/main/scala/org/apache/reef/examples/hellospark/ReefOnSpark.scala",
 new_version)
+        print reef_home + 
"/lang/scala/reef-examples-scala/src/main/scala/org/apache/reef/examples/hellospark/ReefOnSpark.scala"
+
 if __name__ == "__main__":
     parser = argparse.ArgumentParser(description="Script for changing REEF 
version in all files that use it")
     parser.add_argument("reef_home", type=str, help="REEF home")

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/cs/Org.Apache.REEF.Bridge/AssemblyInfo.cpp
----------------------------------------------------------------------
diff --git a/lang/cs/Org.Apache.REEF.Bridge/AssemblyInfo.cpp 
b/lang/cs/Org.Apache.REEF.Bridge/AssemblyInfo.cpp
index 7fd4607..7c81cc9 100644
--- a/lang/cs/Org.Apache.REEF.Bridge/AssemblyInfo.cpp
+++ b/lang/cs/Org.Apache.REEF.Bridge/AssemblyInfo.cpp
@@ -49,8 +49,8 @@ using namespace System::Security::Permissions;
 // by using the '*' as shown below:
 
 //[assembly:AssemblyVersionAttribute("1.0.*")];
-[assembly:AssemblyVersionAttribute("0.16.0.0")];
-[assembly:AssemblyFileVersion("0.16.0.0")]
+[assembly:AssemblyVersionAttribute("0.17.0.0")];
+[assembly:AssemblyFileVersion("0.17.0.0")]
 [assembly:ComVisible(false)];
 
 [assembly:CLSCompliantAttribute(true)];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/cs/Org.Apache.REEF.Client/Properties/Resources.xml
----------------------------------------------------------------------
diff --git a/lang/cs/Org.Apache.REEF.Client/Properties/Resources.xml 
b/lang/cs/Org.Apache.REEF.Client/Properties/Resources.xml
index 977f377..8bab319 100644
--- a/lang/cs/Org.Apache.REEF.Client/Properties/Resources.xml
+++ b/lang/cs/Org.Apache.REEF.Client/Properties/Resources.xml
@@ -80,20 +80,20 @@ This file is used to embed JAR files to client dll
     <value>System.Resources.ResXResourceWriter, System.Windows.Forms, 
Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
   </resheader>
   <data name="ClientJarFullName" xml:space="preserve">
-    <value>reef-bridge-client-0.16.0-SNAPSHOT-shaded.jar</value>
+    <value>reef-bridge-client-0.17.0-SNAPSHOT-shaded.jar</value>
   </data>
   <data name="DriverJarFullName" xml:space="preserve">
-    <value>reef-bridge-java-0.16.0-SNAPSHOT-shaded.jar</value>
+    <value>reef-bridge-java-0.17.0-SNAPSHOT-shaded.jar</value>
   </data>
   <data name="ClrDriverFullName" xml:space="preserve">
     <value>Org.Apache.REEF.ClrDriver.exe</value>
   </data>
   <assembly alias="System.Windows.Forms" name="System.Windows.Forms, 
Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
   <data name="reef_bridge_client" type="System.Resources.ResXFileRef, 
System.Windows.Forms">
-    
<value>E:\src\reef\lang\cs\bin\x64\Debug\Org.Apache.REEF.Bridge.JAR\reef-bridge-client-0.16.0-SNAPSHOT-shaded.jar;System.Byte[],
 mscorlib, Version=4.0.0.0, Culture=neutral, 
PublicKeyToken=b77a5c561934e089</value>
+    
<value>E:\src\reef\lang\cs\bin\x64\Debug\Org.Apache.REEF.Bridge.JAR\reef-bridge-client-0.17.0-SNAPSHOT-shaded.jar;System.Byte[],
 mscorlib, Version=4.0.0.0, Culture=neutral, 
PublicKeyToken=b77a5c561934e089</value>
   </data>
   <data name="reef_bridge_driver" type="System.Resources.ResXFileRef, 
System.Windows.Forms">
-    
<value>E:\src\reef\lang\cs\bin\x64\Debug\Org.Apache.REEF.Bridge.JAR\reef-bridge-java-0.16.0-SNAPSHOT-shaded.jar;System.Byte[],
 mscorlib, Version=4.0.0.0, Culture=neutral, 
PublicKeyToken=b77a5c561934e089</value>
+    
<value>E:\src\reef\lang\cs\bin\x64\Debug\Org.Apache.REEF.Bridge.JAR\reef-bridge-java-0.17.0-SNAPSHOT-shaded.jar;System.Byte[],
 mscorlib, Version=4.0.0.0, Culture=neutral, 
PublicKeyToken=b77a5c561934e089</value>
   </data>
   <data name="reef_clrdriver" type="System.Resources.ResXFileRef, 
System.Windows.Forms">
     
<value>E:\src\reef\lang\cs\bin\x64\Debug\Org.Apache.REEF.ClrDriver\Org.Apache.REEF.ClrDriver.exe;System.Byte[],
 mscorlib, Version=4.0.0.0, Culture=neutral, 
PublicKeyToken=b77a5c561934e089</value>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/cs/Org.Apache.REEF.Client/run.cmd
----------------------------------------------------------------------
diff --git a/lang/cs/Org.Apache.REEF.Client/run.cmd 
b/lang/cs/Org.Apache.REEF.Client/run.cmd
index 621aca2..f18fa6e 100644
--- a/lang/cs/Org.Apache.REEF.Client/run.cmd
+++ b/lang/cs/Org.Apache.REEF.Client/run.cmd
@@ -38,7 +38,7 @@
 :: 
 
 :: RUNTIME
-set SHADED_JAR=.\reef-bridge-java-0.16.0-SNAPSHOT-shaded.jar
+set SHADED_JAR=.\reef-bridge-java-0.17.0-SNAPSHOT-shaded.jar
 
 set 
LOGGING_CONFIG=-Djava.util.logging.config.class=org.apache.reef.util.logging.CLRLoggingConfig
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/cs/Org.Apache.REEF.ClrDriver/AssemblyInfo.cpp
----------------------------------------------------------------------
diff --git a/lang/cs/Org.Apache.REEF.ClrDriver/AssemblyInfo.cpp 
b/lang/cs/Org.Apache.REEF.ClrDriver/AssemblyInfo.cpp
index edd6592..a5cb622 100644
--- a/lang/cs/Org.Apache.REEF.ClrDriver/AssemblyInfo.cpp
+++ b/lang/cs/Org.Apache.REEF.ClrDriver/AssemblyInfo.cpp
@@ -48,7 +48,7 @@ using namespace System::Security::Permissions;
 // by using the '*' as shown below:
 
 [assembly:AssemblyVersion("0.14.0.0")]
-[assembly:AssemblyFileVersion("0.16.0.0")]
+[assembly:AssemblyFileVersion("0.17.0.0")]
 
 [assembly:ComVisible(false)];
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/cs/Org.Apache.REEF.Driver/DriverConfigGenerator.cs
----------------------------------------------------------------------
diff --git a/lang/cs/Org.Apache.REEF.Driver/DriverConfigGenerator.cs 
b/lang/cs/Org.Apache.REEF.Driver/DriverConfigGenerator.cs
index 769e177..cdeb63c 100644
--- a/lang/cs/Org.Apache.REEF.Driver/DriverConfigGenerator.cs
+++ b/lang/cs/Org.Apache.REEF.Driver/DriverConfigGenerator.cs
@@ -42,7 +42,7 @@ namespace Org.Apache.REEF.Driver
         /// <summary>
         /// The bridge JAR name.
         /// </summary>
-        public const string JavaBridgeJarFileName = 
"reef-bridge-java-0.16.0-SNAPSHOT-shaded.jar";
+        public const string JavaBridgeJarFileName = 
"reef-bridge-java-0.17.0-SNAPSHOT-shaded.jar";
 
         private static readonly Logger Log = 
Logger.GetLogger(typeof(DriverConfigGenerator));
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/cs/SharedAssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/lang/cs/SharedAssemblyInfo.cs b/lang/cs/SharedAssemblyInfo.cs
index 99ada4d..6184b10 100644
--- a/lang/cs/SharedAssemblyInfo.cs
+++ b/lang/cs/SharedAssemblyInfo.cs
@@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
 // COM, set the ComVisible attribute to true on that type.
 [assembly: ComVisible(false)]
 
-[assembly: AssemblyVersion("0.16.0.0")]
-[assembly: AssemblyFileVersion("0.16.0.0")]
+[assembly: AssemblyVersion("0.17.0.0")]
+[assembly: AssemblyFileVersion("0.17.0.0")]

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/cs/build.DotNet.props
----------------------------------------------------------------------
diff --git a/lang/cs/build.DotNet.props b/lang/cs/build.DotNet.props
index e08d604..e9625b5 100644
--- a/lang/cs/build.DotNet.props
+++ b/lang/cs/build.DotNet.props
@@ -16,7 +16,7 @@ specific language governing permissions and limitations
 under the License.
 -->
   <PropertyGroup>
-    <Version>0.16.0</Version>
+    <Version>0.17.0</Version>
     <Authors>Apache Software Foundation</Authors>
     <Owners>The Apache REEF project</Owners>
     <Product>Apache REEF</Product>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/cs/build.props
----------------------------------------------------------------------
diff --git a/lang/cs/build.props b/lang/cs/build.props
index 84173ca..281b41f 100644
--- a/lang/cs/build.props
+++ b/lang/cs/build.props
@@ -59,7 +59,7 @@ under the License.
   <!-- REEF NuGet properties -->
   <PropertyGroup>
     <IsSnapshot>true</IsSnapshot>
-    <SnapshotNumber>06</SnapshotNumber>
+    <SnapshotNumber>01</SnapshotNumber>
     <PushPackages>false</PushPackages>
     <NuGetRepository>https://www.nuget.org</NuGetRepository>
     <NuGetError>This project references NuGet package(s) that are missing on 
this computer. Enable NuGet Package Restore to download them.  For more 
information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing 
file is {0}.</NuGetError>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/cs/pom.xml
----------------------------------------------------------------------
diff --git a/lang/cs/pom.xml b/lang/cs/pom.xml
index 788c2e3..d1f1144 100644
--- a/lang/cs/pom.xml
+++ b/lang/cs/pom.xml
@@ -26,7 +26,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../..</relativePath>
     </parent>
 </project>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-annotations/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-annotations/pom.xml 
b/lang/java/reef-annotations/pom.xml
index e1e525a..c3df159 100644
--- a/lang/java/reef-annotations/pom.xml
+++ b/lang/java/reef-annotations/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-applications/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-applications/pom.xml 
b/lang/java/reef-applications/pom.xml
index c54f556..7a19552 100644
--- a/lang/java/reef-applications/pom.xml
+++ b/lang/java/reef-applications/pom.xml
@@ -27,7 +27,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-applications/reef-vortex/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-applications/reef-vortex/pom.xml 
b/lang/java/reef-applications/reef-vortex/pom.xml
index 2aecfa5..d75bd3e 100644
--- a/lang/java/reef-applications/reef-vortex/pom.xml
+++ b/lang/java/reef-applications/reef-vortex/pom.xml
@@ -26,7 +26,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-applications</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
     </parent>
 
     <dependencies>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-bridge-client/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-bridge-client/pom.xml 
b/lang/java/reef-bridge-client/pom.xml
index 91cab1b..7621cc1 100644
--- a/lang/java/reef-bridge-client/pom.xml
+++ b/lang/java/reef-bridge-client/pom.xml
@@ -27,7 +27,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-bridge-java/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-bridge-java/pom.xml 
b/lang/java/reef-bridge-java/pom.xml
index 6d6ff2a..2728e44 100644
--- a/lang/java/reef-bridge-java/pom.xml
+++ b/lang/java/reef-bridge-java/pom.xml
@@ -27,7 +27,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-checkpoint/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-checkpoint/pom.xml 
b/lang/java/reef-checkpoint/pom.xml
index d361a46..9cc4d6c 100644
--- a/lang/java/reef-checkpoint/pom.xml
+++ b/lang/java/reef-checkpoint/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
     <artifactId>reef-checkpoint</artifactId>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-common/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-common/pom.xml b/lang/java/reef-common/pom.xml
index ce9f9b9..94e66c3 100644
--- a/lang/java/reef-common/pom.xml
+++ b/lang/java/reef-common/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-examples-clr/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-examples-clr/pom.xml 
b/lang/java/reef-examples-clr/pom.xml
index 5a78af2..fceaa38 100644
--- a/lang/java/reef-examples-clr/pom.xml
+++ b/lang/java/reef-examples-clr/pom.xml
@@ -27,7 +27,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-examples-hdinsight/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-examples-hdinsight/pom.xml 
b/lang/java/reef-examples-hdinsight/pom.xml
index 929ffbb..f28269c 100644
--- a/lang/java/reef-examples-hdinsight/pom.xml
+++ b/lang/java/reef-examples-hdinsight/pom.xml
@@ -26,7 +26,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-examples/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-examples/pom.xml b/lang/java/reef-examples/pom.xml
index 2fce95a..fafb337 100644
--- a/lang/java/reef-examples/pom.xml
+++ b/lang/java/reef-examples/pom.xml
@@ -26,7 +26,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-experimental/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-experimental/pom.xml 
b/lang/java/reef-experimental/pom.xml
index 9fef1c3..a850995 100644
--- a/lang/java/reef-experimental/pom.xml
+++ b/lang/java/reef-experimental/pom.xml
@@ -25,7 +25,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-io/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-io/pom.xml b/lang/java/reef-io/pom.xml
index 1629a5c..bd49e3f 100644
--- a/lang/java/reef-io/pom.xml
+++ b/lang/java/reef-io/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-poison/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-poison/pom.xml b/lang/java/reef-poison/pom.xml
index 067db47..cacedc8 100644
--- a/lang/java/reef-poison/pom.xml
+++ b/lang/java/reef-poison/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-runtime-hdinsight/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-runtime-hdinsight/pom.xml 
b/lang/java/reef-runtime-hdinsight/pom.xml
index a8c7403..24b1198 100644
--- a/lang/java/reef-runtime-hdinsight/pom.xml
+++ b/lang/java/reef-runtime-hdinsight/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-runtime-local/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-runtime-local/pom.xml 
b/lang/java/reef-runtime-local/pom.xml
index 43ca1ee..a674728 100644
--- a/lang/java/reef-runtime-local/pom.xml
+++ b/lang/java/reef-runtime-local/pom.xml
@@ -24,7 +24,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-runtime-mesos/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-runtime-mesos/pom.xml 
b/lang/java/reef-runtime-mesos/pom.xml
index 1933a91..5d00a92 100644
--- a/lang/java/reef-runtime-mesos/pom.xml
+++ b/lang/java/reef-runtime-mesos/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-runtime-multi/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-runtime-multi/pom.xml 
b/lang/java/reef-runtime-multi/pom.xml
index 3e529ae..b4d4689 100644
--- a/lang/java/reef-runtime-multi/pom.xml
+++ b/lang/java/reef-runtime-multi/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
     <name>REEF Runtime for multiple runtime scenarios</name>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-runtime-standalone/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-runtime-standalone/pom.xml 
b/lang/java/reef-runtime-standalone/pom.xml
index 8c00059..3cdcd02 100644
--- a/lang/java/reef-runtime-standalone/pom.xml
+++ b/lang/java/reef-runtime-standalone/pom.xml
@@ -24,7 +24,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-runtime-yarn/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-runtime-yarn/pom.xml 
b/lang/java/reef-runtime-yarn/pom.xml
index 4492457..0f0aecc 100644
--- a/lang/java/reef-runtime-yarn/pom.xml
+++ b/lang/java/reef-runtime-yarn/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-tang/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-tang/pom.xml b/lang/java/reef-tang/pom.xml
index c808107..09dde0b 100644
--- a/lang/java/reef-tang/pom.xml
+++ b/lang/java/reef-tang/pom.xml
@@ -27,7 +27,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-tang/tang-test-jarA/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-tang/tang-test-jarA/pom.xml 
b/lang/java/reef-tang/tang-test-jarA/pom.xml
index 4e72582..7d4edcd 100644
--- a/lang/java/reef-tang/tang-test-jarA/pom.xml
+++ b/lang/java/reef-tang/tang-test-jarA/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>tang-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>tang-test-jarA</artifactId>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-tang/tang-test-jarAB/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-tang/tang-test-jarAB/pom.xml 
b/lang/java/reef-tang/tang-test-jarAB/pom.xml
index 8a1f8ea..17a3dfd 100644
--- a/lang/java/reef-tang/tang-test-jarAB/pom.xml
+++ b/lang/java/reef-tang/tang-test-jarAB/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>tang-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>tang-test-jarAB</artifactId>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-tang/tang-test-jarB-conflictA/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-tang/tang-test-jarB-conflictA/pom.xml 
b/lang/java/reef-tang/tang-test-jarB-conflictA/pom.xml
index fb2606d..2ce99c0 100644
--- a/lang/java/reef-tang/tang-test-jarB-conflictA/pom.xml
+++ b/lang/java/reef-tang/tang-test-jarB-conflictA/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>tang-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>tang-test-jarB-conflictA</artifactId>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-tang/tang-test-jarB/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-tang/tang-test-jarB/pom.xml 
b/lang/java/reef-tang/tang-test-jarB/pom.xml
index 3b1bd09..eadb279 100644
--- a/lang/java/reef-tang/tang-test-jarB/pom.xml
+++ b/lang/java/reef-tang/tang-test-jarB/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>tang-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>tang-test-jarB</artifactId>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-tang/tang-tint/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-tang/tang-tint/pom.xml 
b/lang/java/reef-tang/tang-tint/pom.xml
index 6dc0687..dbf6a21 100644
--- a/lang/java/reef-tang/tang-tint/pom.xml
+++ b/lang/java/reef-tang/tang-tint/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>tang-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
     </parent>
 
     <dependencies>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-tang/tang/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-tang/tang/pom.xml b/lang/java/reef-tang/tang/pom.xml
index dd6c896..e68c2cd 100644
--- a/lang/java/reef-tang/tang/pom.xml
+++ b/lang/java/reef-tang/tang/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>tang-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>tang</artifactId>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-tests/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-tests/pom.xml b/lang/java/reef-tests/pom.xml
index 692f823..beefd5f 100644
--- a/lang/java/reef-tests/pom.xml
+++ b/lang/java/reef-tests/pom.xml
@@ -28,7 +28,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-utils-hadoop/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-utils-hadoop/pom.xml 
b/lang/java/reef-utils-hadoop/pom.xml
index 653cf61..e898d1e 100644
--- a/lang/java/reef-utils-hadoop/pom.xml
+++ b/lang/java/reef-utils-hadoop/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-utils/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-utils/pom.xml b/lang/java/reef-utils/pom.xml
index f86990d..b5943cd 100644
--- a/lang/java/reef-utils/pom.xml
+++ b/lang/java/reef-utils/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-wake/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-wake/pom.xml b/lang/java/reef-wake/pom.xml
index 01f8c24..3d75c6a 100644
--- a/lang/java/reef-wake/pom.xml
+++ b/lang/java/reef-wake/pom.xml
@@ -28,7 +28,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-wake/wake/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-wake/wake/pom.xml b/lang/java/reef-wake/wake/pom.xml
index cdb82dc..3362fea 100644
--- a/lang/java/reef-wake/wake/pom.xml
+++ b/lang/java/reef-wake/wake/pom.xml
@@ -27,7 +27,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>wake-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
     </parent>
 
     <properties>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/java/reef-webserver/pom.xml
----------------------------------------------------------------------
diff --git a/lang/java/reef-webserver/pom.xml b/lang/java/reef-webserver/pom.xml
index 1c18026..8c2b3d9 100644
--- a/lang/java/reef-webserver/pom.xml
+++ b/lang/java/reef-webserver/pom.xml
@@ -22,7 +22,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/scala/reef-examples-scala/pom.xml
----------------------------------------------------------------------
diff --git a/lang/scala/reef-examples-scala/pom.xml 
b/lang/scala/reef-examples-scala/pom.xml
index 2e2d07d..85e0258 100644
--- a/lang/scala/reef-examples-scala/pom.xml
+++ b/lang/scala/reef-examples-scala/pom.xml
@@ -27,7 +27,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>../../..</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/lang/scala/reef-examples-scala/src/main/scala/org/apache/reef/examples/hellospark/ReefOnSpark.scala
----------------------------------------------------------------------
diff --git 
a/lang/scala/reef-examples-scala/src/main/scala/org/apache/reef/examples/hellospark/ReefOnSpark.scala
 
b/lang/scala/reef-examples-scala/src/main/scala/org/apache/reef/examples/hellospark/ReefOnSpark.scala
index 033607e..31e5ca7 100644
--- 
a/lang/scala/reef-examples-scala/src/main/scala/org/apache/reef/examples/hellospark/ReefOnSpark.scala
+++ 
b/lang/scala/reef-examples-scala/src/main/scala/org/apache/reef/examples/hellospark/ReefOnSpark.scala
@@ -32,7 +32,7 @@ import resource._
 // ..\spark\bin\spark-submit.cmd
 //     --master yarn --deploy-mode cluster
 //     --class org.apache.reef.examples.hellospark.ReefOnSpark
-//     .\target\reef-examples-spark-0.16.0-SNAPSHOT-shaded.jar
+//     .\target\reef-examples-spark-0.17.0-SNAPSHOT-shaded.jar
 
 object ReefOnSpark {
 

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9d7ee82..986458f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@ under the License.
 
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.reef</groupId>
-    <version>0.16.0-SNAPSHOT</version>
+    <version>0.17.0-SNAPSHOT</version>
     <packaging>pom</packaging>
     <name>REEF</name>
     <artifactId>reef-project</artifactId>

http://git-wip-us.apache.org/repos/asf/reef/blob/b37cc1f0/website/pom.xml
----------------------------------------------------------------------
diff --git a/website/pom.xml b/website/pom.xml
index e893c4b..8bb644e 100644
--- a/website/pom.xml
+++ b/website/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.16.0-SNAPSHOT</version>
+        <version>0.17.0-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
     

Reply via email to