You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemall.apache.org by my...@apache.org on 2018/11/15 07:08:05 UTC

[1/3] incubator-hivemall git commit: Bumped version string to 0.5.2-incubating

Repository: incubator-hivemall
Updated Branches:
  refs/heads/v0.5.2 [created] 5b4e36ab7


Bumped version string to 0.5.2-incubating


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

Branch: refs/heads/v0.5.2
Commit: a150707a236ab4bd99fa4ab3e8d067dcec35e0f8
Parents: 9dc819a
Author: Makoto Yui <my...@apache.org>
Authored: Thu Nov 15 15:54:44 2018 +0900
Committer: Makoto Yui <my...@apache.org>
Committed: Thu Nov 15 15:54:44 2018 +0900

----------------------------------------------------------------------
 VERSION                                                            | 2 +-
 core/src/main/java/hivemall/HivemallConstants.java                 | 2 +-
 .../src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala    | 2 +-
 .../test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala    | 2 +-
 .../src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala    | 2 +-
 .../test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala    | 2 +-
 .../src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala    | 2 +-
 .../test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala    | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/a150707a/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index de48d0f..910744d 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.5.2-incubating-SNAPSHOT
+0.5.2-incubating

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/a150707a/core/src/main/java/hivemall/HivemallConstants.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/hivemall/HivemallConstants.java b/core/src/main/java/hivemall/HivemallConstants.java
index 9b8de2d..61e2cd4 100644
--- a/core/src/main/java/hivemall/HivemallConstants.java
+++ b/core/src/main/java/hivemall/HivemallConstants.java
@@ -20,7 +20,7 @@ package hivemall;
 
 public final class HivemallConstants {
 
-    public static final String VERSION = "0.5.2-incubating-SNAPSHOT";
+    public static final String VERSION = "0.5.2-incubating";
 
     public static final String BIAS_CLAUSE = "0";
     public static final int BIAS_CLAUSE_HASHVAL = 0;

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/a150707a/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala b/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
index 007aedf..91ce116 100644
--- a/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
+++ b/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
@@ -35,7 +35,7 @@ final class HiveUdfWithFeatureSuite extends HivemallFeatureQueryTest {
 
     checkAnswer(
       sql(s"SELECT DISTINCT hivemall_version()"),
-      Row("0.5.2-incubating-SNAPSHOT")
+      Row("0.5.2-incubating")
     )
 
     // sql("DROP TEMPORARY FUNCTION IF EXISTS hivemall_version")

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/a150707a/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala b/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
index c5227aa..8ca170f 100644
--- a/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
+++ b/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
@@ -295,7 +295,7 @@ final class HivemallOpsWithFeatureSuite extends HivemallFeatureQueryTest {
   }
 
   test("misc - hivemall_version") {
-    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.5.2-incubating-SNAPSHOT"))
+    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.5.2-incubating"))
   }
 
   test("misc - rowid") {

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/a150707a/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala b/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
index 6423004..2841457 100644
--- a/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
+++ b/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
@@ -36,7 +36,7 @@ final class HiveUdfWithFeatureSuite extends HivemallFeatureQueryTest {
 
     checkAnswer(
       sql(s"SELECT DISTINCT hivemall_version()"),
-      Row("0.5.2-incubating-SNAPSHOT")
+      Row("0.5.2-incubating")
     )
 
     // sql("DROP TEMPORARY FUNCTION IF EXISTS hivemall_version")

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/a150707a/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala b/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
index b16a120..51fcfd0 100644
--- a/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
+++ b/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
@@ -562,7 +562,7 @@ class HivemallOpsWithFeatureSuite extends HivemallFeatureQueryTest {
   }
 
   test("misc - hivemall_version") {
-    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.5.2-incubating-SNAPSHOT"))
+    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.5.2-incubating"))
   }
 
   test("misc - rowid") {

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/a150707a/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala b/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
index 6423004..2841457 100644
--- a/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
+++ b/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
@@ -36,7 +36,7 @@ final class HiveUdfWithFeatureSuite extends HivemallFeatureQueryTest {
 
     checkAnswer(
       sql(s"SELECT DISTINCT hivemall_version()"),
-      Row("0.5.2-incubating-SNAPSHOT")
+      Row("0.5.2-incubating")
     )
 
     // sql("DROP TEMPORARY FUNCTION IF EXISTS hivemall_version")

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/a150707a/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala b/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
index c05427b..34e80e7 100644
--- a/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
+++ b/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
@@ -563,7 +563,7 @@ class HivemallOpsWithFeatureSuite extends HivemallFeatureQueryTest {
   }
 
   test("misc - hivemall_version") {
-    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.5.2-incubating-SNAPSHOT"))
+    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.5.2-incubating"))
   }
 
   test("misc - rowid") {


[3/3] incubator-hivemall git commit: [maven-release-plugin] prepare for next development iteration

Posted by my...@apache.org.
[maven-release-plugin] prepare for next development iteration


Project: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/commit/5b4e36ab
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/tree/5b4e36ab
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/diff/5b4e36ab

Branch: refs/heads/v0.5.2
Commit: 5b4e36ab7be3934442ad68e0001cdd4814b50a8a
Parents: c44f386
Author: Makoto Yui <my...@apache.org>
Authored: Thu Nov 15 16:06:06 2018 +0900
Committer: Makoto Yui <my...@apache.org>
Committed: Thu Nov 15 16:07:41 2018 +0900

----------------------------------------------------------------------
 VERSION                                                          | 2 +-
 core/pom.xml                                                     | 2 +-
 core/src/main/java/hivemall/HivemallConstants.java               | 2 +-
 dist/pom.xml                                                     | 2 +-
 mixserv/pom.xml                                                  | 2 +-
 nlp/pom.xml                                                      | 2 +-
 pom.xml                                                          | 4 ++--
 spark/common/pom.xml                                             | 2 +-
 spark/pom.xml                                                    | 2 +-
 spark/spark-2.1/pom.xml                                          | 2 +-
 .../src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala  | 2 +-
 .../test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala  | 2 +-
 spark/spark-2.2/pom.xml                                          | 2 +-
 .../src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala  | 2 +-
 .../test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala  | 2 +-
 spark/spark-2.3/pom.xml                                          | 2 +-
 .../src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala  | 2 +-
 .../test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala  | 2 +-
 tools/hivemall-docs/pom.xml                                      | 2 +-
 tools/pom.xml                                                    | 2 +-
 xgboost/pom.xml                                                  | 2 +-
 21 files changed, 22 insertions(+), 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index 910744d..e721006 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.5.2-incubating
+0.6.0-incubating-SNAPSHOT

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index b4271dd..fe756a0 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/core/src/main/java/hivemall/HivemallConstants.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/hivemall/HivemallConstants.java b/core/src/main/java/hivemall/HivemallConstants.java
index 61e2cd4..a0133a7 100644
--- a/core/src/main/java/hivemall/HivemallConstants.java
+++ b/core/src/main/java/hivemall/HivemallConstants.java
@@ -20,7 +20,7 @@ package hivemall;
 
 public final class HivemallConstants {
 
-    public static final String VERSION = "0.5.2-incubating";
+    public static final String VERSION = "0.6.0-incubating-SNAPSHOT";
 
     public static final String BIAS_CLAUSE = "0";
     public static final int BIAS_CLAUSE_HASHVAL = 0;

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/dist/pom.xml
----------------------------------------------------------------------
diff --git a/dist/pom.xml b/dist/pom.xml
index 5d8f522..4040bdc 100644
--- a/dist/pom.xml
+++ b/dist/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/mixserv/pom.xml
----------------------------------------------------------------------
diff --git a/mixserv/pom.xml b/mixserv/pom.xml
index 0e2fcc4..fd863a5 100644
--- a/mixserv/pom.xml
+++ b/mixserv/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/nlp/pom.xml
----------------------------------------------------------------------
diff --git a/nlp/pom.xml b/nlp/pom.xml
index 1626fcd..0bce2ac 100644
--- a/nlp/pom.xml
+++ b/nlp/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c4739d1..5bddc3f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@
 
 	<groupId>org.apache.hivemall</groupId>
 	<artifactId>hivemall</artifactId>
-	<version>0.5.2-incubating</version>
+	<version>0.6.0-incubating-SNAPSHOT</version>
 
 	<parent>
 	  <groupId>org.apache</groupId>
@@ -50,7 +50,7 @@
 		<url>https://git-wip-us.apache.org/repos/asf/incubator-hivemall.git</url>
 		<connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-hivemall.git</connection>
 		<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-hivemall.git</developerConnection>
-		<tag>v0.5.2-rc1</tag>
+		<tag>v0.5.0-rc1</tag>
 	</scm>
 
 	<mailingLists>

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/spark/common/pom.xml
----------------------------------------------------------------------
diff --git a/spark/common/pom.xml b/spark/common/pom.xml
index c2090c9..745475f 100644
--- a/spark/common/pom.xml
+++ b/spark/common/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall-spark</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/spark/pom.xml
----------------------------------------------------------------------
diff --git a/spark/pom.xml b/spark/pom.xml
index 8e3630d..9f71e1e 100644
--- a/spark/pom.xml
+++ b/spark/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/spark/spark-2.1/pom.xml
----------------------------------------------------------------------
diff --git a/spark/spark-2.1/pom.xml b/spark/spark-2.1/pom.xml
index e03f4c0..9e3b3c5 100644
--- a/spark/spark-2.1/pom.xml
+++ b/spark/spark-2.1/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall-spark</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala b/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
index 91ce116..530326c 100644
--- a/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
+++ b/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
@@ -35,7 +35,7 @@ final class HiveUdfWithFeatureSuite extends HivemallFeatureQueryTest {
 
     checkAnswer(
       sql(s"SELECT DISTINCT hivemall_version()"),
-      Row("0.5.2-incubating")
+      Row("0.6.0-incubating-SNAPSHOT")
     )
 
     // sql("DROP TEMPORARY FUNCTION IF EXISTS hivemall_version")

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala b/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
index 8ca170f..b3f6a3e 100644
--- a/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
+++ b/spark/spark-2.1/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
@@ -295,7 +295,7 @@ final class HivemallOpsWithFeatureSuite extends HivemallFeatureQueryTest {
   }
 
   test("misc - hivemall_version") {
-    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.5.2-incubating"))
+    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.6.0-incubating-SNAPSHOT"))
   }
 
   test("misc - rowid") {

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/spark/spark-2.2/pom.xml
----------------------------------------------------------------------
diff --git a/spark/spark-2.2/pom.xml b/spark/spark-2.2/pom.xml
index c1f240c..ab9113a 100644
--- a/spark/spark-2.2/pom.xml
+++ b/spark/spark-2.2/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall-spark</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala b/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
index 2841457..234f562 100644
--- a/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
+++ b/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
@@ -36,7 +36,7 @@ final class HiveUdfWithFeatureSuite extends HivemallFeatureQueryTest {
 
     checkAnswer(
       sql(s"SELECT DISTINCT hivemall_version()"),
-      Row("0.5.2-incubating")
+      Row("0.6.0-incubating-SNAPSHOT")
     )
 
     // sql("DROP TEMPORARY FUNCTION IF EXISTS hivemall_version")

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala b/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
index 51fcfd0..b77dc59 100644
--- a/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
+++ b/spark/spark-2.2/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
@@ -562,7 +562,7 @@ class HivemallOpsWithFeatureSuite extends HivemallFeatureQueryTest {
   }
 
   test("misc - hivemall_version") {
-    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.5.2-incubating"))
+    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.6.0-incubating-SNAPSHOT"))
   }
 
   test("misc - rowid") {

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/spark/spark-2.3/pom.xml
----------------------------------------------------------------------
diff --git a/spark/spark-2.3/pom.xml b/spark/spark-2.3/pom.xml
index 7958451..6f0f1c5 100644
--- a/spark/spark-2.3/pom.xml
+++ b/spark/spark-2.3/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall-spark</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala b/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
index 2841457..234f562 100644
--- a/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
+++ b/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HiveUdfSuite.scala
@@ -36,7 +36,7 @@ final class HiveUdfWithFeatureSuite extends HivemallFeatureQueryTest {
 
     checkAnswer(
       sql(s"SELECT DISTINCT hivemall_version()"),
-      Row("0.5.2-incubating")
+      Row("0.6.0-incubating-SNAPSHOT")
     )
 
     // sql("DROP TEMPORARY FUNCTION IF EXISTS hivemall_version")

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
----------------------------------------------------------------------
diff --git a/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala b/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
index 34e80e7..268be05 100644
--- a/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
+++ b/spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/HivemallOpsSuite.scala
@@ -563,7 +563,7 @@ class HivemallOpsWithFeatureSuite extends HivemallFeatureQueryTest {
   }
 
   test("misc - hivemall_version") {
-    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.5.2-incubating"))
+    checkAnswer(DummyInputData.select(hivemall_version()), Row("0.6.0-incubating-SNAPSHOT"))
   }
 
   test("misc - rowid") {

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/tools/hivemall-docs/pom.xml
----------------------------------------------------------------------
diff --git a/tools/hivemall-docs/pom.xml b/tools/hivemall-docs/pom.xml
index 41a22a9..917a55d 100644
--- a/tools/hivemall-docs/pom.xml
+++ b/tools/hivemall-docs/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall-tools</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/tools/pom.xml
----------------------------------------------------------------------
diff --git a/tools/pom.xml b/tools/pom.xml
index aafefca..5b6fe9c 100644
--- a/tools/pom.xml
+++ b/tools/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/5b4e36ab/xgboost/pom.xml
----------------------------------------------------------------------
diff --git a/xgboost/pom.xml b/xgboost/pom.xml
index db5310c..7b7d1df 100644
--- a/xgboost/pom.xml
+++ b/xgboost/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating</version>
+		<version>0.6.0-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 


[2/3] incubator-hivemall git commit: [maven-release-plugin] prepare release v0.5.2-rc1

Posted by my...@apache.org.
[maven-release-plugin] prepare release v0.5.2-rc1


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

Branch: refs/heads/v0.5.2
Commit: c44f3868e201f121d75ef8056d13a2260f017c65
Parents: a150707
Author: Makoto Yui <my...@apache.org>
Authored: Thu Nov 15 16:05:56 2018 +0900
Committer: Makoto Yui <my...@apache.org>
Committed: Thu Nov 15 16:05:56 2018 +0900

----------------------------------------------------------------------
 core/pom.xml                | 2 +-
 dist/pom.xml                | 2 +-
 mixserv/pom.xml             | 2 +-
 nlp/pom.xml                 | 2 +-
 pom.xml                     | 7 +++----
 spark/common/pom.xml        | 2 +-
 spark/pom.xml               | 2 +-
 spark/spark-2.1/pom.xml     | 2 +-
 spark/spark-2.2/pom.xml     | 2 +-
 spark/spark-2.3/pom.xml     | 2 +-
 tools/hivemall-docs/pom.xml | 8 +++-----
 tools/pom.xml               | 2 +-
 xgboost/pom.xml             | 2 +-
 13 files changed, 17 insertions(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index c1cea8e..b4271dd 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/dist/pom.xml
----------------------------------------------------------------------
diff --git a/dist/pom.xml b/dist/pom.xml
index f1df1d9..5d8f522 100644
--- a/dist/pom.xml
+++ b/dist/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/mixserv/pom.xml
----------------------------------------------------------------------
diff --git a/mixserv/pom.xml b/mixserv/pom.xml
index 30fbfb0..0e2fcc4 100644
--- a/mixserv/pom.xml
+++ b/mixserv/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/nlp/pom.xml
----------------------------------------------------------------------
diff --git a/nlp/pom.xml b/nlp/pom.xml
index c0054fd..1626fcd 100644
--- a/nlp/pom.xml
+++ b/nlp/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 5c2fb0d..c4739d1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -16,13 +16,12 @@
   specific language governing permissions and limitations
   under the License.
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 
 	<groupId>org.apache.hivemall</groupId>
 	<artifactId>hivemall</artifactId>
-	<version>0.5.2-incubating-SNAPSHOT</version>
+	<version>0.5.2-incubating</version>
 
 	<parent>
 	  <groupId>org.apache</groupId>
@@ -51,7 +50,7 @@
 		<url>https://git-wip-us.apache.org/repos/asf/incubator-hivemall.git</url>
 		<connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-hivemall.git</connection>
 		<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-hivemall.git</developerConnection>
-		<tag>v0.5.0-rc1</tag>
+		<tag>v0.5.2-rc1</tag>
 	</scm>
 
 	<mailingLists>

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/spark/common/pom.xml
----------------------------------------------------------------------
diff --git a/spark/common/pom.xml b/spark/common/pom.xml
index eea931f..c2090c9 100644
--- a/spark/common/pom.xml
+++ b/spark/common/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall-spark</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/spark/pom.xml
----------------------------------------------------------------------
diff --git a/spark/pom.xml b/spark/pom.xml
index ecc1608..8e3630d 100644
--- a/spark/pom.xml
+++ b/spark/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/spark/spark-2.1/pom.xml
----------------------------------------------------------------------
diff --git a/spark/spark-2.1/pom.xml b/spark/spark-2.1/pom.xml
index e6f0e6b..e03f4c0 100644
--- a/spark/spark-2.1/pom.xml
+++ b/spark/spark-2.1/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall-spark</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/spark/spark-2.2/pom.xml
----------------------------------------------------------------------
diff --git a/spark/spark-2.2/pom.xml b/spark/spark-2.2/pom.xml
index 1e23e49..c1f240c 100644
--- a/spark/spark-2.2/pom.xml
+++ b/spark/spark-2.2/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall-spark</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/spark/spark-2.3/pom.xml
----------------------------------------------------------------------
diff --git a/spark/spark-2.3/pom.xml b/spark/spark-2.3/pom.xml
index 658622c..7958451 100644
--- a/spark/spark-2.3/pom.xml
+++ b/spark/spark-2.3/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall-spark</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/tools/hivemall-docs/pom.xml
----------------------------------------------------------------------
diff --git a/tools/hivemall-docs/pom.xml b/tools/hivemall-docs/pom.xml
index d497cc6..41a22a9 100644
--- a/tools/hivemall-docs/pom.xml
+++ b/tools/hivemall-docs/pom.xml
@@ -16,15 +16,13 @@
   specific language governing permissions and limitations
   under the License.
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall-tools</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
@@ -136,7 +134,7 @@
 										</goals>
 									</pluginExecutionFilter>
 									<action>
-										<ignore></ignore>
+										<ignore />
 									</action>
 								</pluginExecution>
 							</pluginExecutions>

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/tools/pom.xml
----------------------------------------------------------------------
diff --git a/tools/pom.xml b/tools/pom.xml
index 52b08a8..aafefca 100644
--- a/tools/pom.xml
+++ b/tools/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/c44f3868/xgboost/pom.xml
----------------------------------------------------------------------
diff --git a/xgboost/pom.xml b/xgboost/pom.xml
index 7919c8c..db5310c 100644
--- a/xgboost/pom.xml
+++ b/xgboost/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.5.2-incubating-SNAPSHOT</version>
+		<version>0.5.2-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>