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 2019/11/28 16:52:08 UTC

[incubator-hivemall] branch v0.6.0 created (now 7c85305)

This is an automated email from the ASF dual-hosted git repository.

myui pushed a change to branch v0.6.0
in repository https://gitbox.apache.org/repos/asf/incubator-hivemall.git.


      at 7c85305  [maven-release-plugin] prepare for next development iteration

This branch includes the following new commits:

     new 74cd33d  Bumped version string to 0.6.0-incubating
     new 36a177c  [maven-release-plugin] prepare release v0.6.0-rc1
     new 7c85305  [maven-release-plugin] prepare for next development iteration

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-hivemall] 03/03: [maven-release-plugin] prepare for next development iteration

Posted by my...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

myui pushed a commit to branch v0.6.0
in repository https://gitbox.apache.org/repos/asf/incubator-hivemall.git

commit 7c85305d47793ef3b7244da942785b4b41e68d78
Author: Makoto Yui <my...@apache.org>
AuthorDate: Fri Nov 29 01:43:53 2019 +0900

    [maven-release-plugin] prepare for next development iteration
---
 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 ++--
 tools/hivemall-docs/pom.xml                        | 2 +-
 tools/pom.xml                                      | 2 +-
 xgboost/pom.xml                                    | 2 +-
 10 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/VERSION b/VERSION
index 4275dd8..2a9e0bd 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.6.0-incubating
+0.6.2-incubating-SNAPSHOT
diff --git a/core/pom.xml b/core/pom.xml
index d3ee0b6..ee65e63 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.6.0-incubating</version>
+		<version>0.6.2-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/core/src/main/java/hivemall/HivemallConstants.java b/core/src/main/java/hivemall/HivemallConstants.java
index 883332d..e8b2b72 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.6.0-incubating";
+    public static final String VERSION = "0.6.2-incubating-SNAPSHOT";
 
     public static final String BIAS_CLAUSE = "0";
     public static final int BIAS_CLAUSE_HASHVAL = 0;
diff --git a/dist/pom.xml b/dist/pom.xml
index 4e0a7c6..36de34a 100644
--- a/dist/pom.xml
+++ b/dist/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.6.0-incubating</version>
+		<version>0.6.2-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/mixserv/pom.xml b/mixserv/pom.xml
index f6ce569..ec70b23 100644
--- a/mixserv/pom.xml
+++ b/mixserv/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.6.0-incubating</version>
+		<version>0.6.2-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/nlp/pom.xml b/nlp/pom.xml
index e409efa..c163fea 100644
--- a/nlp/pom.xml
+++ b/nlp/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.6.0-incubating</version>
+		<version>0.6.2-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/pom.xml b/pom.xml
index 6c5a07a..10f7624 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@
 
 	<groupId>org.apache.hivemall</groupId>
 	<artifactId>hivemall</artifactId>
-	<version>0.6.0-incubating</version>
+	<version>0.6.2-incubating-SNAPSHOT</version>
 
 	<parent>
 		<groupId>org.apache</groupId>
@@ -50,7 +50,7 @@
 		<url>https://gitbox.apache.org/repos/asf/incubator-hivemall.git</url>
 		<connection>scm:git:https://gitbox.apache.org/repos/asf/incubator-hivemall.git</connection>
 		<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/incubator-hivemall.git</developerConnection>
-		<tag>v0.6.0-rc1</tag>
+		<tag>v0.5.2</tag>
 	</scm>
 
 	<mailingLists>
diff --git a/tools/hivemall-docs/pom.xml b/tools/hivemall-docs/pom.xml
index 5ea4307..d35b8d2 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.6.0-incubating</version>
+		<version>0.6.2-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/tools/pom.xml b/tools/pom.xml
index b51f7ed..e651661 100644
--- a/tools/pom.xml
+++ b/tools/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.6.0-incubating</version>
+		<version>0.6.2-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/xgboost/pom.xml b/xgboost/pom.xml
index dded27d..ca8725a 100644
--- a/xgboost/pom.xml
+++ b/xgboost/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.6.0-incubating</version>
+		<version>0.6.2-incubating-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 


[incubator-hivemall] 02/03: [maven-release-plugin] prepare release v0.6.0-rc1

Posted by my...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

myui pushed a commit to branch v0.6.0
in repository https://gitbox.apache.org/repos/asf/incubator-hivemall.git

commit 36a177c2ee6c464c6d70e01dd5a8c8f7301e235b
Author: Makoto Yui <my...@apache.org>
AuthorDate: Fri Nov 29 01:43:43 2019 +0900

    [maven-release-plugin] prepare release v0.6.0-rc1
---
 core/pom.xml                | 6 ++----
 dist/pom.xml                | 2 +-
 mixserv/pom.xml             | 2 +-
 nlp/pom.xml                 | 2 +-
 pom.xml                     | 8 +++-----
 tools/hivemall-docs/pom.xml | 2 +-
 tools/pom.xml               | 2 +-
 xgboost/pom.xml             | 6 ++----
 8 files changed, 12 insertions(+), 18 deletions(-)

diff --git a/core/pom.xml b/core/pom.xml
index 04a12c9..d3ee0b6 100644
--- a/core/pom.xml
+++ b/core/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</artifactId>
-		<version>0.6.0-incubating-SNAPSHOT</version>
+		<version>0.6.0-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/dist/pom.xml b/dist/pom.xml
index 1b0da97..4e0a7c6 100644
--- a/dist/pom.xml
+++ b/dist/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.6.0-incubating-SNAPSHOT</version>
+		<version>0.6.0-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/mixserv/pom.xml b/mixserv/pom.xml
index 4b2fa91..f6ce569 100644
--- a/mixserv/pom.xml
+++ b/mixserv/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.6.0-incubating-SNAPSHOT</version>
+		<version>0.6.0-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/nlp/pom.xml b/nlp/pom.xml
index c1cfd05..e409efa 100644
--- a/nlp/pom.xml
+++ b/nlp/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.6.0-incubating-SNAPSHOT</version>
+		<version>0.6.0-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/pom.xml b/pom.xml
index f47bc9d..6c5a07a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -16,14 +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.6.0-incubating-SNAPSHOT</version>
+	<version>0.6.0-incubating</version>
 
 	<parent>
 		<groupId>org.apache</groupId>
@@ -52,7 +50,7 @@
 		<url>https://gitbox.apache.org/repos/asf/incubator-hivemall.git</url>
 		<connection>scm:git:https://gitbox.apache.org/repos/asf/incubator-hivemall.git</connection>
 		<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/incubator-hivemall.git</developerConnection>
-		<tag>v0.5.2</tag>
+		<tag>v0.6.0-rc1</tag>
 	</scm>
 
 	<mailingLists>
diff --git a/tools/hivemall-docs/pom.xml b/tools/hivemall-docs/pom.xml
index 65ff8d9..5ea4307 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.6.0-incubating-SNAPSHOT</version>
+		<version>0.6.0-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/tools/pom.xml b/tools/pom.xml
index 5b6fe9c..b51f7ed 100644
--- a/tools/pom.xml
+++ b/tools/pom.xml
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.hivemall</groupId>
 		<artifactId>hivemall</artifactId>
-		<version>0.6.0-incubating-SNAPSHOT</version>
+		<version>0.6.0-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
diff --git a/xgboost/pom.xml b/xgboost/pom.xml
index 8cce245..dded27d 100644
--- a/xgboost/pom.xml
+++ b/xgboost/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</artifactId>
-		<version>0.6.0-incubating-SNAPSHOT</version>
+		<version>0.6.0-incubating</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 


[incubator-hivemall] 01/03: Bumped version string to 0.6.0-incubating

Posted by my...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

myui pushed a commit to branch v0.6.0
in repository https://gitbox.apache.org/repos/asf/incubator-hivemall.git

commit 74cd33d7b5a54bf7340ce92e0f56e7c41d687d86
Author: Makoto Yui <my...@apache.org>
AuthorDate: Fri Nov 29 01:41:45 2019 +0900

    Bumped version string to 0.6.0-incubating
---
 VERSION                                            | 2 +-
 core/src/main/java/hivemall/HivemallConstants.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/VERSION b/VERSION
index e721006..4275dd8 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.6.0-incubating-SNAPSHOT
+0.6.0-incubating
diff --git a/core/src/main/java/hivemall/HivemallConstants.java b/core/src/main/java/hivemall/HivemallConstants.java
index a0133a7..883332d 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.6.0-incubating-SNAPSHOT";
+    public static final String VERSION = "0.6.0-incubating";
 
     public static final String BIAS_CLAUSE = "0";
     public static final int BIAS_CLAUSE_HASHVAL = 0;