Skip to content

Commit 25e1bd0

Browse files
authored
Merge pull request #117 from snipsco/release/0.63.1
Release 0.63.1
2 parents 12fd27e + 5577dd7 commit 25e1bd0

File tree

11 files changed

+18
-893
lines changed

11 files changed

+18
-893
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
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.63.1] - 2019-02-11
5+
### Fixed
6+
- Fix an issue regarding the way builtin entities were handled by the `CRFSlotFiller`
7+
48
## [0.63.0] - 2019-02-04
59
### Added
610
- `get_intents` API: get the probabilities of all intents (including the null intent) with respect to an input text
@@ -165,7 +169,7 @@ being statically hardcoded, reducing the binary size by 31Mb.
165169
- Improve support for japanese
166170
- Rename python package to `snips_nlu_rust`
167171

168-
[Unreleased]: https://github.com/snipsco/snips-nlu-rs/compare/0.63.0...HEAD
172+
[0.63.1]: https://github.com/snipsco/snips-nlu-rs/compare/0.63.0...0.63.1
169173
[0.63.0]: https://github.com/snipsco/snips-nlu-rs/compare/0.62.0...0.63.0
170174
[0.61.2]: https://github.com/snipsco/snips-nlu-rs/compare/0.61.1...0.61.2
171175
[0.61.1]: https://github.com/snipsco/snips-nlu-rs/compare/0.61.0...0.61.1

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-lib"
3-
version = "0.63.0"
3+
version = "0.63.1"
44
authors = [
55
"Adrien Ball <[email protected]>",
66
"Clement Doumouro <[email protected]>",

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.63.0"
3+
version = "0.63.1"
44
edition = "2018"
55
authors = [
66
"Adrien Ball <[email protected]>",

platforms/c/libsnips_nlu.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <stdlib.h>
66
#include <stdbool.h>
77

8-
#define SNIPS_NLU_VERSION "0.63.0"
8+
#define SNIPS_NLU_VERSION "0.63.1"
99

1010
/*
1111
* Enum representing the grain of a resolved date related value

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.63.0"
14+
version = "0.63.1"
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.63.0"
3+
version = "0.63.1"
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.63.0" }
14+
snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.63.1" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.63.0
1+
0.63.1

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.63.0"
7+
VERSION="0.63.1"
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)