Skip to content

Commit 88a047a

Browse files
Deluviadrienball
authored andcommitted
Release 0.65.6 (#158)
- Bumped crfsuite to 0.3.3
1 parent 6d0fcab commit 88a047a

File tree

9 files changed

+15
-10
lines changed

9 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [0.65.6] - 2020-01-28
5+
### Changed
6+
- Bumped crfsuite to `0.3.3` [#158](https://github.com/snipsco/snips-nlu-rs/pull/158)
7+
48
## [0.65.5] - 2020-01-24
59
### Changed
610
- 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.
245249
- Improve support for japanese
246250
- Rename python package to `snips_nlu_rust`
247251

252+
[0.65.6]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.5...0.65.6
248253
[0.65.5]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.4...0.65.5
249254
[0.65.4]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.3...0.65.4
250255
[0.65.3]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.2...0.65.3

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snips-nlu-lib"
3-
version = "0.65.5"
3+
version = "0.65.6"
44
authors = [
55
"Adrien Ball <[email protected]>",
66
"Clement Doumouro <[email protected]>",
@@ -18,7 +18,7 @@ members = [
1818
]
1919

2020
[dependencies]
21-
crfsuite = { git = "https://github.com/snipsco/crfsuite-rs", tag = "0.3.2" }
21+
crfsuite = { git = "https://github.com/snipsco/crfsuite-rs", tag = "0.3.3" }
2222
snips-nlu-ontology = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.67.1" }
2323
snips-nlu-utils = { git = "https://github.com/snipsco/snips-nlu-utils", tag = "0.9.1" }
2424
snips-nlu-parsers = { git = "https://github.com/snipsco/snips-nlu-parsers", tag = "0.4.3" }

ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snips-nlu-ffi"
3-
version = "0.65.5"
3+
version = "0.65.6"
44
edition = "2018"
55
authors = [
66
"Adrien Ball <[email protected]>",

ffi/cbindgen.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ language = "c"
22

33
include_guard = "LIBSNIPS_NLU_H_"
44

5-
header = "#define SNIPS_NLU_VERSION \"0.65.5\""
5+
header = "#define SNIPS_NLU_VERSION \"0.65.6\""
66

77
[parse]
88
parse_deps = true

platforms/c/libsnips_nlu.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define SNIPS_NLU_VERSION "0.65.5"
1+
#define SNIPS_NLU_VERSION "0.65.6"
22

33
#ifndef LIBSNIPS_NLU_H_
44
#define LIBSNIPS_NLU_H_

platforms/kotlin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111

1212
apply plugin: 'kotlin'
1313

14-
version = "0.65.5"
14+
version = "0.65.6"
1515
group = "ai.snips"
1616

1717
repositories {

platforms/python/ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snips-nlu-python-ffi"
3-
version = "0.65.5"
3+
version = "0.65.6"
44
authors = ["Adrien Ball <[email protected]>"]
55
edition = "2018"
66

@@ -11,4 +11,4 @@ crate-type = ["cdylib"]
1111
[dependencies]
1212
libc = "0.2"
1313
ffi-utils = { git = "https://github.com/snipsco/snips-utils-rs", rev = "4292ad9" }
14-
snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.65.5" }
14+
snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.65.6" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.65.5
1+
0.65.6

platforms/swift/SnipsNlu/Dependencies/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
set -e
66

7-
VERSION="0.65.5"
7+
VERSION="0.65.6"
88
SYSTEM=$(echo $1 | tr '[:upper:]' '[:lower:]')
99
LIBRARY_NAME=libsnips_nlu_ffi
1010
LIBRARY_NAME_A=${LIBRARY_NAME}.a

0 commit comments

Comments
 (0)