From 6d0fcabd9540a91ac3d156fcb92acee5277e228a Mon Sep 17 00:00:00 2001 From: Adrien Ball Date: Mon, 27 Jan 2020 11:16:09 +0100 Subject: [PATCH] Release 0.65.5 (#157) * Bump snips-nlu-parsers to 0.4.3 * Bump version to 0.65.5 * Update Changelog --- CHANGELOG.md | 6 ++++++ Cargo.toml | 4 ++-- ffi/Cargo.toml | 2 +- ffi/cbindgen.toml | 2 +- platforms/c/libsnips_nlu.h | 2 +- platforms/kotlin/build.gradle | 2 +- platforms/python/ffi/Cargo.toml | 4 ++-- platforms/python/snips_nlu_rust/__version__ | 2 +- platforms/swift/SnipsNlu/Dependencies/build.sh | 2 +- 9 files changed, 16 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df6a0150..f4e25794 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.65.5] - 2020-01-24 +### Changed +- Bumped `snips-nlu-parsers` to `0.4.3` [#157](https://github.com/snipsco/snips-nlu-rs/pull/157) + ## [0.65.4] - 2020-01-15 ### Changed - Bumped crfsuite to `0.3.2` [#155](https://github.com/snipsco/snips-nlu-rs/pull/155) @@ -241,6 +245,8 @@ being statically hardcoded, reducing the binary size by 31Mb. - Improve support for japanese - Rename python package to `snips_nlu_rust` +[0.65.5]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.4...0.65.5 +[0.65.4]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.3...0.65.4 [0.65.3]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.2...0.65.3 [0.65.2]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.1...0.65.2 [0.65.1]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.0...0.65.1 diff --git a/Cargo.toml b/Cargo.toml index 50210cde..b27d9eca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snips-nlu-lib" -version = "0.65.4" +version = "0.65.5" authors = [ "Adrien Ball ", "Clement Doumouro ", @@ -21,7 +21,7 @@ members = [ crfsuite = { git = "https://github.com/snipsco/crfsuite-rs", tag = "0.3.2" } snips-nlu-ontology = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.67.1" } snips-nlu-utils = { git = "https://github.com/snipsco/snips-nlu-utils", tag = "0.9.1" } -snips-nlu-parsers = { git = "https://github.com/snipsco/snips-nlu-parsers", tag = "0.4.2" } +snips-nlu-parsers = { git = "https://github.com/snipsco/snips-nlu-parsers", tag = "0.4.3" } failure = "0.1" base64 = "0.10" itertools = { version = "0.8", default-features = false } diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 934edb15..52cb6a7e 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snips-nlu-ffi" -version = "0.65.4" +version = "0.65.5" edition = "2018" authors = [ "Adrien Ball ", diff --git a/ffi/cbindgen.toml b/ffi/cbindgen.toml index ebb74ac4..b15f6b4b 100644 --- a/ffi/cbindgen.toml +++ b/ffi/cbindgen.toml @@ -2,7 +2,7 @@ language = "c" include_guard = "LIBSNIPS_NLU_H_" -header = "#define SNIPS_NLU_VERSION \"0.65.4\"" +header = "#define SNIPS_NLU_VERSION \"0.65.5\"" [parse] parse_deps = true diff --git a/platforms/c/libsnips_nlu.h b/platforms/c/libsnips_nlu.h index 2f5c57b2..e5ff8710 100644 --- a/platforms/c/libsnips_nlu.h +++ b/platforms/c/libsnips_nlu.h @@ -1,4 +1,4 @@ -#define SNIPS_NLU_VERSION "0.65.4" +#define SNIPS_NLU_VERSION "0.65.5" #ifndef LIBSNIPS_NLU_H_ #define LIBSNIPS_NLU_H_ diff --git a/platforms/kotlin/build.gradle b/platforms/kotlin/build.gradle index 22f572ac..cc409b3c 100644 --- a/platforms/kotlin/build.gradle +++ b/platforms/kotlin/build.gradle @@ -11,7 +11,7 @@ buildscript { apply plugin: 'kotlin' -version = "0.65.4" +version = "0.65.5" group = "ai.snips" repositories { diff --git a/platforms/python/ffi/Cargo.toml b/platforms/python/ffi/Cargo.toml index 68c82a78..323c530f 100644 --- a/platforms/python/ffi/Cargo.toml +++ b/platforms/python/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snips-nlu-python-ffi" -version = "0.65.4" +version = "0.65.5" authors = ["Adrien Ball "] edition = "2018" @@ -11,4 +11,4 @@ crate-type = ["cdylib"] [dependencies] libc = "0.2" ffi-utils = { git = "https://github.com/snipsco/snips-utils-rs", rev = "4292ad9" } -snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.65.4" } +snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.65.5" } diff --git a/platforms/python/snips_nlu_rust/__version__ b/platforms/python/snips_nlu_rust/__version__ index 1b1191fe..3ebbed33 100644 --- a/platforms/python/snips_nlu_rust/__version__ +++ b/platforms/python/snips_nlu_rust/__version__ @@ -1 +1 @@ -0.65.4 +0.65.5 diff --git a/platforms/swift/SnipsNlu/Dependencies/build.sh b/platforms/swift/SnipsNlu/Dependencies/build.sh index 413a1bf2..9152f479 100755 --- a/platforms/swift/SnipsNlu/Dependencies/build.sh +++ b/platforms/swift/SnipsNlu/Dependencies/build.sh @@ -4,7 +4,7 @@ set -e -VERSION="0.65.4" +VERSION="0.65.5" SYSTEM=$(echo $1 | tr '[:upper:]' '[:lower:]') LIBRARY_NAME=libsnips_nlu_ffi LIBRARY_NAME_A=${LIBRARY_NAME}.a