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
commit c06b053df47df6716da686ad465e20fe46bdf589 Author: Aaron Radzinski <[email protected]> AuthorDate: Thu Dec 17 20:14:16 2020 -0800 Prep for 0.7.3 release. --- README.md | 4 ++-- nlpcraft-stanford/pom.xml | 2 +- nlpcraft/pom.xml | 2 +- .../src/main/scala/org/apache/nlpcraft/common/version/NCVersion.scala | 3 ++- openapi/nlpcraft_swagger.yml | 2 +- pom.xml | 4 ++-- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 575b741..a1bf832 100644 --- a/README.md +++ b/README.md @@ -101,11 +101,11 @@ Add NLPCraft dependency to your project: <dependency> <groupId>org.apache.nlpcraft</groupId> <artifactId>nlpcraft</artifactId> - <version>0.7.2</version> + <version>0.7.3</version> </dependency> </dependencies> ``` -NOTE: **0.7.2** should be the latest NLPCraft version. +NOTE: **0.7.3** 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/nlpcraft-stanford/pom.xml b/nlpcraft-stanford/pom.xml index b2f1d95..c44d738 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.2</version> + <version>0.7.3</version> <relativePath>../</relativePath> </parent> diff --git a/nlpcraft/pom.xml b/nlpcraft/pom.xml index 6be99be..6b18e39 100644 --- a/nlpcraft/pom.xml +++ b/nlpcraft/pom.xml @@ -32,7 +32,7 @@ <parent> <groupId>org.apache.nlpcraft</groupId> <artifactId>nlpcraft-parent</artifactId> - <version>0.7.2</version> + <version>0.7.3</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 cc3ae4f..31a8812 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 @@ -52,7 +52,8 @@ object NCVersion extends LazyLogging { Version("0.6.2", LocalDate.of(2020, 7, 9)), Version("0.7.0", LocalDate.of(2020, 9, 29)), Version("0.7.1", LocalDate.of(2020, 10, 29)), - Version("0.7.2", LocalDate.of(2020, 11, 19)) + Version("0.7.2", LocalDate.of(2020, 11, 19)), + Version("0.7.3", LocalDate.of(2020, 12, 19)) ).sortBy(_.version) // +=================================================+ // | UPDATE THIS SEQUENCE FOR EACH RELEASE MANUALLY. | diff --git a/openapi/nlpcraft_swagger.yml b/openapi/nlpcraft_swagger.yml index bff623c..f497831 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.2 + version: 0.7.3 title: Apache NLPCraft API host: localhost:8081 basePath: /api/v1 diff --git a/pom.xml b/pom.xml index 10ad8e8..570e262 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.2</version> + <version>0.7.3</version> <packaging>pom</packaging> <url>https://nlpcraft.apache.org</url> @@ -67,7 +67,7 @@ <connection>scm:git:ssh://[email protected]/apache/incubator-nlpcraft.git</connection> <developerConnection>scm:git:ssh://[email protected]/apache/incubator-nlpcraft.git</developerConnection> <!-- Set actual tag name here --> - <tag>v0.7.2</tag> + <tag>v0.7.3</tag> </scm> <properties>
