From 88a047aacf40f3316a9cbdde850ea1798af39c2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9=20Baylac=20Jacqu=C3=A9?= <33259748+Deluvi@users.noreply.github.com> Date: Tue, 28 Jan 2020 17:19:54 +0100 Subject: [PATCH] Release 0.65.6 (#158) - Bumped crfsuite to 0.3.3 --- CHANGELOG.md | 5 +++++ 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, 15 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4e25794..4c68a705 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.6] - 2020-01-28 +### Changed +- Bumped crfsuite to `0.3.3` [#158](https://github.com/snipsco/snips-nlu-rs/pull/158) + ## [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) @@ -245,6 +249,7 @@ being statically hardcoded, reducing the binary size by 31Mb. - Improve support for japanese - Rename python package to `snips_nlu_rust` +[0.65.6]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.5...0.65.6 [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 diff --git a/Cargo.toml b/Cargo.toml index b27d9eca..d4e26842 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snips-nlu-lib" -version = "0.65.5" +version = "0.65.6" authors = [ "Adrien Ball ", "Clement Doumouro ", @@ -18,7 +18,7 @@ members = [ ] [dependencies] -crfsuite = { git = "https://github.com/snipsco/crfsuite-rs", tag = "0.3.2" } +crfsuite = { git = "https://github.com/snipsco/crfsuite-rs", tag = "0.3.3" } 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.3" } diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 52cb6a7e..7d81ee8b 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snips-nlu-ffi" -version = "0.65.5" +version = "0.65.6" edition = "2018" authors = [ "Adrien Ball ", diff --git a/ffi/cbindgen.toml b/ffi/cbindgen.toml index b15f6b4b..a2620e42 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.5\"" +header = "#define SNIPS_NLU_VERSION \"0.65.6\"" [parse] parse_deps = true diff --git a/platforms/c/libsnips_nlu.h b/platforms/c/libsnips_nlu.h index e5ff8710..e4ea9568 100644 --- a/platforms/c/libsnips_nlu.h +++ b/platforms/c/libsnips_nlu.h @@ -1,4 +1,4 @@ -#define SNIPS_NLU_VERSION "0.65.5" +#define SNIPS_NLU_VERSION "0.65.6" #ifndef LIBSNIPS_NLU_H_ #define LIBSNIPS_NLU_H_ diff --git a/platforms/kotlin/build.gradle b/platforms/kotlin/build.gradle index cc409b3c..382e755f 100644 --- a/platforms/kotlin/build.gradle +++ b/platforms/kotlin/build.gradle @@ -11,7 +11,7 @@ buildscript { apply plugin: 'kotlin' -version = "0.65.5" +version = "0.65.6" group = "ai.snips" repositories { diff --git a/platforms/python/ffi/Cargo.toml b/platforms/python/ffi/Cargo.toml index 323c530f..f92aa9a0 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.5" +version = "0.65.6" 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.5" } +snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.65.6" } diff --git a/platforms/python/snips_nlu_rust/__version__ b/platforms/python/snips_nlu_rust/__version__ index 3ebbed33..fdf32f08 100644 --- a/platforms/python/snips_nlu_rust/__version__ +++ b/platforms/python/snips_nlu_rust/__version__ @@ -1 +1 @@ -0.65.5 +0.65.6 diff --git a/platforms/swift/SnipsNlu/Dependencies/build.sh b/platforms/swift/SnipsNlu/Dependencies/build.sh index 9152f479..390ed899 100755 --- a/platforms/swift/SnipsNlu/Dependencies/build.sh +++ b/platforms/swift/SnipsNlu/Dependencies/build.sh @@ -4,7 +4,7 @@ set -e -VERSION="0.65.5" +VERSION="0.65.6" SYSTEM=$(echo $1 | tr '[:upper:]' '[:lower:]') LIBRARY_NAME=libsnips_nlu_ffi LIBRARY_NAME_A=${LIBRARY_NAME}.a