You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by ar...@apache.org on 2020/05/25 19:57:13 UTC

[incubator-nlpcraft] branch master updated: Leftover updates for 0.6.0 release.

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

aradzinski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git


The following commit(s) were added to refs/heads/master by this push:
     new b6117d5  Leftover updates for 0.6.0 release.
b6117d5 is described below

commit b6117d5df2db2c75bad63b4e0a6c51e94852f013
Author: Aaron Radzinzski <ar...@datalingvo.com>
AuthorDate: Mon May 25 12:57:02 2020 -0700

    Leftover updates for 0.6.0 release.
---
 pom.xml                                                           | 4 ++--
 src/main/scala/org/apache/nlpcraft/common/version/NCVersion.scala | 3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2179f21..9cffdb9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
     <name>NLPCraft</name>
     <groupId>org.apache.nlpcraft</groupId>
     <artifactId>nlpcraft</artifactId>
-    <version>0.5.0</version>
+    <version>0.6.0</version>
     <url>https://nlpcraft.apache.org</url>
     <description>An open source API to convert natural language into actions.</description>
 
@@ -60,7 +60,7 @@
         <connection>scm:git:ssh://git@github.com/apache/incubator-nlpcraft.git</connection>
         <developerConnection>scm:git:ssh://git@github.com/apache/incubator-nlpcraft.git</developerConnection>
         <!-- Set actual tag name here -->
-        <tag>HEAD</tag>
+        <tag>0.6.0</tag>
     </scm>
 
     <properties>
diff --git a/src/main/scala/org/apache/nlpcraft/common/version/NCVersion.scala b/src/main/scala/org/apache/nlpcraft/common/version/NCVersion.scala
index f547dec..d7b06c2 100644
--- a/src/main/scala/org/apache/nlpcraft/common/version/NCVersion.scala
+++ b/src/main/scala/org/apache/nlpcraft/common/version/NCVersion.scala
@@ -45,7 +45,8 @@ object NCVersion extends LazyLogging {
     // | UPDATE THIS SEQUENCE FOR EACH RELEASE MANUALLY. |
     // +=================================================+
     private final val VERSIONS = Seq(
-        Version("0.5.0", LocalDate.of(2020, 4, 16))
+        Version("0.5.0", LocalDate.of(2020, 4, 16)),
+        Version("0.6.0", LocalDate.of(2020, 5, 25)),
     ).sortBy(_.version)
     // +=================================================+
     // | UPDATE THIS SEQUENCE FOR EACH RELEASE MANUALLY. |