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/07/12 17:07:04 UTC

[incubator-nlpcraft] branch master updated: Fix for 0.9.0 POM version 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 e1c4ad0  Fix for 0.9.0 POM version release.
e1c4ad0 is described below

commit e1c4ad08dd5296f238648faefaeae79c73662c13
Author: Aaron Radzinski <ar...@datalingvo.com>
AuthorDate: Mon Jul 12 10:06:51 2021 -0700

    Fix for 0.9.0 POM version release.
---
 README.md                             |  4 ++--
 docker/readme.md                      | 12 ++++++------
 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 +-
 openapi/nlpcraft_swagger.yml          |  2 +-
 pom.xml                               |  4 ++--
 15 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/README.md b/README.md
index 6bbfbb6..11211a5 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.8.0</version>
+        <version>0.9.0</version>
     </dependency>
 </dependencies>
 ```
-NOTE: **0.8.0** should be the latest NLPCraft version.
+NOTE: **0.9.0** 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 719c934..04f723b 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.8.0```, 
+ 2. Pull actual NLPCraft server image: ```docker pull nlpcraftserver/server:0.9.0```, 
  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.8.0```
+ 3. Run image: ```docker run -m 8G -p 8081:8081 -p 8201:8201 -p 8202:8202 nlpcraftserver/server:0.9.0```
 
 **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.8.0```, where
-    * `0.8.0` - maven build version, prepared on previous step.
+   ```./prepare.sh docker_acct server 0.9.0```, where
+    * `0.9.0` - 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.8.0`   
+    Note that docker image name will be `docker_acct/server:0.9.0`   
  3. Login to [DockerHub](https://hub.docker.com): ```docker login```   
- 4. Push prepared docker image: ```docker push docker_acct/server:0.8.0```  
+ 4. Push prepared docker image: ```docker push docker_acct/server:0.9.0```  
  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 763b8f6..84cb0dc 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.8.0</version>
+        <version>0.9.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/echo/pom.xml b/nlpcraft-examples/echo/pom.xml
index 0e58925..9474274 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.8.0</version>
+        <version>0.9.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/helloworld/pom.xml b/nlpcraft-examples/helloworld/pom.xml
index 7f897a9..72ab825 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.8.0</version>
+        <version>0.9.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/lightswitch/pom.xml b/nlpcraft-examples/lightswitch/pom.xml
index f2bce0d..327da62 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.8.0</version>
+        <version>0.9.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/minecraft/pom.xml b/nlpcraft-examples/minecraft/pom.xml
index 5f01310..09ee22a 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.8.0</version>
+        <version>0.9.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/phone/pom.xml b/nlpcraft-examples/phone/pom.xml
index ef87614..cf29107 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.8.0</version>
+        <version>0.9.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/sql/pom.xml b/nlpcraft-examples/sql/pom.xml
index df6d1b3..b1ab75e 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.8.0</version>
+        <version>0.9.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/time/pom.xml b/nlpcraft-examples/time/pom.xml
index ca52709..88c25e2 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.8.0</version>
+        <version>0.9.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-examples/weather/pom.xml b/nlpcraft-examples/weather/pom.xml
index 1716cb2..2d465c6 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.8.0</version>
+        <version>0.9.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft-stanford/pom.xml b/nlpcraft-stanford/pom.xml
index b50eea7..27e1e1a 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.8.0</version>
+        <version>0.9.0</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
diff --git a/nlpcraft/pom.xml b/nlpcraft/pom.xml
index 4d8c292..fc1c73f 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.8.0</version>
+        <version>0.9.0</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
diff --git a/openapi/nlpcraft_swagger.yml b/openapi/nlpcraft_swagger.yml
index 957e65d..4b0be1e 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.8.0
+  version: 0.9.0
   title: Apache NLPCraft API
 host: localhost:8081
 basePath: /api/v1
diff --git a/pom.xml b/pom.xml
index 1cf7d9f..45ca6a5 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.8.0</version>
+    <version>0.9.0</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.8.0</tag>
+        <tag>v0.9.0</tag>
     </scm>
 
     <properties>