Skip to content

Commit 155b813

Browse files
authored
Merge pull request #51 from snipsco/release/0.57.0
Release 0.57.0
2 parents f80525d + 076faa8 commit 155b813

File tree

22 files changed

+1568
-1514
lines changed

22 files changed

+1568
-1514
lines changed

CHANGELOG.md

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

4+
## [0.57.0] - 2018-06-08
5+
### Changed
6+
- Improve matching of synonyms
7+
- Improve caching strategy for builtin entity parsing
8+
- Improve intent classification
9+
- Bump model version to `0.15.0`
10+
- Bump `snips-nlu-ontology` to `0.57.0`
11+
412
## [0.56.1] - 2018-05-18
513
### Changed
614
- Improve calibration of intent classification probabilities
@@ -45,6 +53,7 @@ All notable changes to this project will be documented in this file.
4553
- Rename python package to `snips_nlu_rust`
4654

4755

56+
[0.57.0]: https://github.com/snipsco/snips-nlu-rs/compare/0.56.1...0.57.0
4857
[0.56.1]: https://github.com/snipsco/snips-nlu-rs/compare/0.56.0...0.56.1
4958
[0.56.0]: https://github.com/snipsco/snips-nlu-rs/compare/0.55.2...0.56.0
5059
[0.55.2]: https://github.com/snipsco/snips-nlu-rs/compare/0.55.1...0.55.2

data/tests/configurations/trained_assistant.json

Lines changed: 1406 additions & 1421 deletions
Large diffs are not rendered by default.
-4.39 KB
Binary file not shown.

snips-nlu-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-ffi"
3-
version = "0.56.1"
3+
version = "0.57.0"
44
authors = [
55
"Kevin Lefevre <[email protected]>",
66
"Thibaut Lorrain <[email protected]>"
@@ -9,7 +9,7 @@ authors = [
99
[dependencies]
1010
ffi-utils = { git = "https://github.com/snipsco/snips-utils-rs", rev = "b1f4af3" }
1111
snips-nlu-lib = { path = "../snips-nlu-lib" }
12-
snips-nlu-ontology-ffi-macros = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.55.0" }
12+
snips-nlu-ontology-ffi-macros = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.57.0" }
1313
failure = "0.1"
1414
lazy_static = "1.0"
1515
libc = "0.2"

snips-nlu-ffi/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.56.1"
14+
version = "0.57.0"
1515
group = "ai.snips"
1616

1717
repositories {
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.56.1"
3+
version = "0.57.0"
44
authors = ["Adrien Ball <[email protected]>"]
55

66
[lib]
@@ -10,4 +10,4 @@ crate-type = ["cdylib"]
1010
[dependencies]
1111
libc = "0.2"
1212
ffi-utils = { git = "https://github.com/snipsco/snips-utils-rs", rev = "b1f4af3" }
13-
snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.56.1" }
13+
snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.57.0" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.56.1
1+
0.57.0

snips-nlu-ffi/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.56.1"
7+
VERSION="0.57.0"
88
SYSTEM=$(echo $1 | tr '[:upper:]' '[:lower:]')
99
LIBRARY_NAME=libsnips_nlu_ffi
1010
LIBRARY_NAME_A=${LIBRARY_NAME}.a

snips-nlu-lib/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snips-nlu-lib"
3-
version = "0.56.1"
3+
version = "0.57.0"
44
authors = [
55
"Thibaut Lorrain <[email protected]>",
66
"Kevin Lefevre <[email protected]>"
@@ -11,13 +11,15 @@ description = "Rust implementation of Snips NLU"
1111
[dependencies]
1212
snips-nlu-resources-packed = { path = "../snips-nlu-resources-packed" }
1313
crfsuite = { git = "https://github.com/snipsco/crfsuite-rs", rev = "b18d95c" }
14-
snips-nlu-ontology = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.55.0" }
15-
snips-nlu-ontology-parsers = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.55.0" }
14+
snips-nlu-ontology = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.57.0" }
15+
snips-nlu-ontology-parsers = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.57.0" }
1616
snips-nlu-utils = { git = "https://github.com/snipsco/snips-nlu-utils", tag = "0.6.1" }
1717
dinghy-test = "0.3"
1818
failure = "0.1"
1919
base64 = "0.9"
2020
itertools = { version = "0.7", default-features = false }
21+
lazy_static = "1.0"
22+
lru-cache = "0.1.1"
2123
serde = "1.0"
2224
serde_derive = "1.0"
2325
serde_json = "1.0"

snips-nlu-lib/examples/trained_assistant.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)