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/06/18 23:51:57 UTC

[incubator-nlpcraft] branch NLPCRAFT-81 updated: Prepping 0.6.2. release.

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

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


The following commit(s) were added to refs/heads/NLPCRAFT-81 by this push:
     new 9c86369  Prepping 0.6.2. release.
9c86369 is described below

commit 9c863693d6bacd1a69b605add39c9c5aefba46f5
Author: Aaron Radzinzski <ar...@datalingvo.com>
AuthorDate: Thu Jun 18 16:51:47 2020 -0700

    Prepping 0.6.2. release.
---
 LICENSE                                                   | 15 ++++++++++++++-
 nlpcraft-stanford/pom.xml                                 |  2 +-
 nlpcraft/pom.xml                                          |  2 +-
 .../org/apache/nlpcraft/common/version/NCVersion.scala    |  2 +-
 4 files changed, 17 insertions(+), 4 deletions(-)

diff --git a/LICENSE b/LICENSE
index b0ef039..4202ae9 100644
--- a/LICENSE
+++ b/LICENSE
@@ -209,4 +209,17 @@
    ----------------------
 
    Files under 'nlpcraft/src/main/resources/opennlp' folder are from
-   Apache OpenNLP project (https://opennlp.apache.org/).
+   Apache OpenNLP project (https://opennlp.apache.org/) licensed
+   under ASL 2.0.
+
+   ----------------------
+
+   Files under 'nlpcraft/src/main/resources/geo' and its sub-folders were
+   generated based on the data from https://www.geonames.org/ whose content
+   is licensed under CC BY 4.0.
+
+   ----------------------
+
+   Files under 'nlpcraft/src/main/resources/spell' were generated from
+   https://en.wikipedia.org/wiki/Wikipedia:Lists_of_common_misspellings/S
+   whose content is licensed under CC BY-SA 3.0 US.
\ No newline at end of file
diff --git a/nlpcraft-stanford/pom.xml b/nlpcraft-stanford/pom.xml
index 1798b3f..341fd7e 100644
--- a/nlpcraft-stanford/pom.xml
+++ b/nlpcraft-stanford/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <groupId>org.apache.nlpcraft</groupId>
         <artifactId>nlpcraft-parent</artifactId>
-        <version>0.6.1</version>
+        <version>0.6.2</version>
         <relativePath>../</relativePath>
     </parent>
 
diff --git a/nlpcraft/pom.xml b/nlpcraft/pom.xml
index 4165f83..fbb039f 100644
--- a/nlpcraft/pom.xml
+++ b/nlpcraft/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <groupId>org.apache.nlpcraft</groupId>
         <artifactId>nlpcraft-parent</artifactId>
-        <version>0.6.1</version>
+        <version>0.6.2</version>
         <relativePath>../</relativePath>
     </parent>
 
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/common/version/NCVersion.scala b/nlpcraft/src/main/scala/org/apache/nlpcraft/common/version/NCVersion.scala
index b222083..989fccf 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/common/version/NCVersion.scala
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/common/version/NCVersion.scala
@@ -47,7 +47,7 @@ object NCVersion extends LazyLogging {
     private final val VERSIONS = Seq(
         Version("0.5.0", LocalDate.of(2020, 4, 16)),
         Version("0.6.0", LocalDate.of(2020, 5, 25)),
-        Version("0.6.1", LocalDate.of(2020, 6, 8))
+        Version("0.6.2", LocalDate.of(2020, 6, 18))
     ).sortBy(_.version)
     // +=================================================+
     // | UPDATE THIS SEQUENCE FOR EACH RELEASE MANUALLY. |