Skip to content

Commit

Permalink
V0.1.8 (#116)
Browse files Browse the repository at this point in the history
* v0.1.8

* also increment nlu server version

* update docker image
  • Loading branch information
franklevasseur authored Oct 20, 2021
1 parent 677f1fd commit 83f1d67
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [0.1.8](https://github.com/botpress/nlu/compare/v0.1.7...v0.1.8) (2021-10-20)


### Bug Fixes

* **nlu-cli:** upgrade version of nlu-cli to match root version ([#112](https://github.com/botpress/nlu/issues/112)) ([d08ac79](https://github.com/botpress/nlu/commit/d08ac79714aa39ccaa8df4cabbaa40f0012811bd))
* **nlu-engine:** only few languages are space separated ([#114](https://github.com/botpress/nlu/issues/114)) ([98c84ef](https://github.com/botpress/nlu/commit/98c84ef7a944e53fb507af225a6f65687538601a))



## [0.1.7](https://github.com/botpress/nlu/compare/v0.1.6...v0.1.7) (2021-10-06)


Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ RUN yarn package

FROM ubuntu:18.04

COPY --from=build /nlu/dist/nlu-v0_1_7-linux-x64 /nlu
COPY --from=build /nlu/dist/nlu-v0_1_8-linux-x64 /nlu

CMD ["/nlu"]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@botpress/nlu",
"version": "0.1.7",
"version": "0.1.8",
"description": "Botpress NLU; Contains all of Botpress NLU related code.",
"author": "Botpress, Inc.",
"license": "AGPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/nlu-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@botpress/nlu-cli",
"version": "0.1.7",
"version": "0.1.8",
"description": "CLI/entry-point to both nlu server or language-server",
"main": "./dist/index.js",
"author": "Botpress, Inc.",
Expand Down
2 changes: 1 addition & 1 deletion packages/nlu-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@botpress/nlu-server",
"version": "0.1.7",
"version": "0.1.8",
"description": "Botpress Standalone NLU Server",
"main": "./dist/index.js",
"author": "Botpress, Inc.",
Expand Down
3 changes: 2 additions & 1 deletion scripts/gulp.release.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ const bumpVersion = (cb) => {
await prependFile(changeLogPath, changeLog)

const allPackages = await fse.readdir(packagesDir)
logger.warning(`Don't forget to increment the version of : [\n${allPackages.join('\n')}\n].`)

logger.warning(`Don't forget to increment the version of : [\n ${allPackages.join('\n ')}\n].`)
logger.warning('If you bump a version, it must be because you modified one of those.')

cb()
Expand Down

0 comments on commit 83f1d67

Please sign in to comment.