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 2021/04/27 07:59:10 UTC

[incubator-nlpcraft] branch master updated: 0.7.4 - 0.7.5

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 2efb1e5  0.7.4 - 0.7.5
2efb1e5 is described below

commit 2efb1e5c1590d784b48627dfc50d5022908e12b8
Author: Aaron Radzinzski <ar...@datalingvo.com>
AuthorDate: Tue Apr 27 10:59:01 2021 +0300

    0.7.4 - 0.7.5
---
 README.md                                                  |  4 ++--
 docker/readme.md                                           | 14 +++++++-------
 nlpcraft-examples/alarm/pom.xml                            |  2 +-
 nlpcraft-examples/echo/pom.xml                             |  2 +-
 nlpcraft-examples/helloworld/pom.xml                       |  2 +-
 nlpcraft-examples/lightswitch/pom.xml                      |  2 +-
 nlpcraft-examples/minecraft/pom.xml                        |  2 +-
 nlpcraft-examples/phone/pom.xml                            |  2 +-
 nlpcraft-examples/sql/pom.xml                              |  2 +-
 nlpcraft-examples/time/pom.xml                             |  2 +-
 nlpcraft-examples/weather/pom.xml                          |  2 +-
 nlpcraft-stanford/pom.xml                                  |  2 +-
 nlpcraft/pom.xml                                           |  2 +-
 .../org/apache/nlpcraft/common/version/NCVersion.scala     |  3 ++-
 openapi/nlpcraft_swagger.yml                               |  2 +-
 pom.xml                                                    |  4 ++--
 16 files changed, 25 insertions(+), 24 deletions(-)

diff --git a/README.md b/README.md
index 6e8081d..da1f7dc 100644
--- a/README.md
+++ b/README.md
@@ -105,11 +105,11 @@ Add NLPCraft dependency to your project:
     <dependency>
         <groupId>org.apache.nlpcraft</groupId>
         <artifactId>nlpcraft</artifactId>
-        <version>0.7.4</version>
+        <version>0.7.5</version>
     </dependency>
 </dependencies>
 ```
-NOTE: **0.7.4** should be the latest NLPCraft version.
+NOTE: **0.7.5** should be the latest NLPCraft version.
 
 ### Define Data Model
 Declare the static part of the data model using YAML which we will later load in our model implementation. You can declare entire
diff --git a/docker/readme.md b/docker/readme.md
index 54f5b97..1ea5b41 100644
--- a/docker/readme.md
+++ b/docker/readme.md
@@ -28,9 +28,9 @@ also prepare your own images following the instructions below.
 
 #### Using Server Image
  1. [Install](https://docs.docker.com/install/) docker.
- 2. Pull actual NLPCraft server image: ```docker pull nlpcraftserver/server:0.7.4```, 
- where `0.7.4` is the desired version.
- 3. Run image: ```docker run -m 8G -p 8081:8081 -p 8201:8201 -p 8202:8202 nlpcraftserver/server:0.7.4```
+ 2. Pull actual NLPCraft server image: ```docker pull nlpcraftserver/server:0.7.5```, 
+ where `0.7.5` is the desired version.
+ 3. Run image: ```docker run -m 8G -p 8081:8081 -p 8201:8201 -p 8202:8202 nlpcraftserver/server:0.7.5```
 
 **NOTE**:
  Default docker image run REST server with default configuration (see file `build/nlpcraft.conf`). See [configuration](https://nlpcraft.apache.org/server-and-probe.html)
@@ -40,13 +40,13 @@ also prepare your own images following the instructions below.
 You can prepare your own NLPCraft server image following these instructions:
  1. Build the release with maven: ```mvn clean package -P release```  
  2. Prepare docker image with `prepare.sh` (modify it if necessary):
-   ```./prepare.sh docker_acct server 0.7.4```, where
-    * `0.7.4` - maven build version, prepared on previous step.
+   ```./prepare.sh docker_acct server 0.7.5```, where
+    * `0.7.5` - maven build version, prepared on previous step.
     * `docker_acct` - change it to your own [DockerHub](https://hub.docker.com) account.    
  
-    Note that docker image name will be `docker_acct/server:0.7.4`   
+    Note that docker image name will be `docker_acct/server:0.7.5`   
  3. Login to [DockerHub](https://hub.docker.com): ```docker login```   
- 4. Push prepared docker image: ```docker push docker_acct/server:0.7.4```  
+ 4. Push prepared docker image: ```docker push docker_acct/server:0.7.5```  
  5. Logout from [DockerHub](https://hub.docker.com): ```docker logout```
 
 **NOTE**:
diff --git a/nlpcraft-examples/alarm/pom.xml b/nlpcraft-examples/alarm/pom.xml
index 2dbadae..e7790f7 100644
--- a/nlpcraft-examples/alarm/pom.xml
+++ b/nlpcraft-examples/alarm/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <artifactId>nlpcraft-parent</artifactId>
         <groupId>org.apache.nlpcraft</groupId>
-        <version>0.7.4</version>
+        <version>0.7.5</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/echo/pom.xml b/nlpcraft-examples/echo/pom.xml
index 98b3d63..c1fe84c 100644
--- a/nlpcraft-examples/echo/pom.xml
+++ b/nlpcraft-examples/echo/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <artifactId>nlpcraft-parent</artifactId>
         <groupId>org.apache.nlpcraft</groupId>
-        <version>0.7.4</version>
+        <version>0.7.5</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/helloworld/pom.xml b/nlpcraft-examples/helloworld/pom.xml
index 9b8b896..3ad1c32 100644
--- a/nlpcraft-examples/helloworld/pom.xml
+++ b/nlpcraft-examples/helloworld/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <artifactId>nlpcraft-parent</artifactId>
         <groupId>org.apache.nlpcraft</groupId>
-        <version>0.7.4</version>
+        <version>0.7.5</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/lightswitch/pom.xml b/nlpcraft-examples/lightswitch/pom.xml
index d312598..470a86d 100644
--- a/nlpcraft-examples/lightswitch/pom.xml
+++ b/nlpcraft-examples/lightswitch/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <artifactId>nlpcraft-parent</artifactId>
         <groupId>org.apache.nlpcraft</groupId>
-        <version>0.7.4</version>
+        <version>0.7.5</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/minecraft/pom.xml b/nlpcraft-examples/minecraft/pom.xml
index 672c842..f4f7efd 100644
--- a/nlpcraft-examples/minecraft/pom.xml
+++ b/nlpcraft-examples/minecraft/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <groupId>org.apache.nlpcraft</groupId>
         <artifactId>nlpcraft-parent</artifactId>
-        <version>0.7.4</version>
+        <version>0.7.5</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/phone/pom.xml b/nlpcraft-examples/phone/pom.xml
index 4579d66..1039140 100644
--- a/nlpcraft-examples/phone/pom.xml
+++ b/nlpcraft-examples/phone/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <artifactId>nlpcraft-parent</artifactId>
         <groupId>org.apache.nlpcraft</groupId>
-        <version>0.7.4</version>
+        <version>0.7.5</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/sql/pom.xml b/nlpcraft-examples/sql/pom.xml
index a0afc28..7e7873a 100644
--- a/nlpcraft-examples/sql/pom.xml
+++ b/nlpcraft-examples/sql/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <artifactId>nlpcraft-parent</artifactId>
         <groupId>org.apache.nlpcraft</groupId>
-        <version>0.7.4</version>
+        <version>0.7.5</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/time/pom.xml b/nlpcraft-examples/time/pom.xml
index 7c9de9b..88f2d5a 100644
--- a/nlpcraft-examples/time/pom.xml
+++ b/nlpcraft-examples/time/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <artifactId>nlpcraft-parent</artifactId>
         <groupId>org.apache.nlpcraft</groupId>
-        <version>0.7.4</version>
+        <version>0.7.5</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/weather/pom.xml b/nlpcraft-examples/weather/pom.xml
index 1b60fb5..f18c77f 100644
--- a/nlpcraft-examples/weather/pom.xml
+++ b/nlpcraft-examples/weather/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <artifactId>nlpcraft-parent</artifactId>
         <groupId>org.apache.nlpcraft</groupId>
-        <version>0.7.4</version>
+        <version>0.7.5</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-stanford/pom.xml b/nlpcraft-stanford/pom.xml
index 497bbca..f2e4fe4 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.7.4</version>
+        <version>0.7.5</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft/pom.xml b/nlpcraft/pom.xml
index 5524976..2d1bc7d 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.7.4</version>
+        <version>0.7.5</version>
         <relativePath>../pom.xml</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 b0c0ab3..041a990 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
@@ -54,7 +54,8 @@ object NCVersion extends LazyLogging {
         Version("0.7.1", LocalDate.of(2020, 10, 29)),
         Version("0.7.2", LocalDate.of(2020, 11, 19)),
         Version("0.7.3", LocalDate.of(2020, 12, 31)),
-        Version("0.7.4", LocalDate.of(2021, 1, 31))
+        Version("0.7.4", LocalDate.of(2021, 1, 31)),
+        Version("0.7.5", LocalDate.of(2021, 4, 30))
     ).sortBy(_.version)
     // +=================================================+
     // | UPDATE THIS SEQUENCE FOR EACH RELEASE MANUALLY. |
diff --git a/openapi/nlpcraft_swagger.yml b/openapi/nlpcraft_swagger.yml
index ac72473..b0d4cfc 100644
--- a/openapi/nlpcraft_swagger.yml
+++ b/openapi/nlpcraft_swagger.yml
@@ -21,7 +21,7 @@ info:
     REST API for <a href="https://nlpcraft.apache.org">Apache NLPCraft</a> - an open source library for
     adding Natural Language Interface to any applications. For Data Model APIs see
     <a href="https://nlpcraft.apache.org/apis/latest/index.html">Javadoc</a> documentation.
-  version: 0.7.4
+  version: 0.7.5
   title: Apache NLPCraft API
 host: localhost:8081
 basePath: /api/v1
diff --git a/pom.xml b/pom.xml
index cdcf16c..4c1b291 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
     <name>NLPCraft Parent</name>
     <groupId>org.apache.nlpcraft</groupId>
     <artifactId>nlpcraft-parent</artifactId>
-    <version>0.7.4</version>
+    <version>0.7.5</version>
     <packaging>pom</packaging>
 
     <url>https://nlpcraft.apache.org</url>
@@ -67,7 +67,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>v0.7.4</tag>
+        <tag>v0.7.5</tag>
     </scm>
 
     <properties>