Skip to content

Commit

Permalink
Release 0.65.6 (#158)
Browse files Browse the repository at this point in the history
- Bumped crfsuite to 0.3.3
  • Loading branch information
Deluvi authored and adrienball committed Jan 28, 2020
1 parent 6d0fcab commit 88a047a
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snips-nlu-lib"
version = "0.65.5"
version = "0.65.6"
authors = [
"Adrien Ball <[email protected]>",
"Clement Doumouro <[email protected]>",
Expand All @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snips-nlu-ffi"
version = "0.65.5"
version = "0.65.6"
edition = "2018"
authors = [
"Adrien Ball <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion ffi/cbindgen.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion platforms/c/libsnips_nlu.h
Original file line number Diff line number Diff line change
@@ -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_
Expand Down
2 changes: 1 addition & 1 deletion platforms/kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {

apply plugin: 'kotlin'

version = "0.65.5"
version = "0.65.6"
group = "ai.snips"

repositories {
Expand Down
4 changes: 2 additions & 2 deletions platforms/python/ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snips-nlu-python-ffi"
version = "0.65.5"
version = "0.65.6"
authors = ["Adrien Ball <[email protected]>"]
edition = "2018"

Expand All @@ -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" }
2 changes: 1 addition & 1 deletion platforms/python/snips_nlu_rust/__version__
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.65.5
0.65.6
2 changes: 1 addition & 1 deletion platforms/swift/SnipsNlu/Dependencies/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 88a047a

Please sign in to comment.