Skip to content

Commit

Permalink
Release/0.65.1 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClemDoum authored Sep 4, 2019
1 parent cd31190 commit 5266f81
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.

## [Unreleased]
## [0.65.1] - 2019-09-04
### Added
- Add new `parse_with_alternatives` API to `SnipsNluEngine` to get alternative intents and slot values [#148](https://github.com/snipsco/snips-nlu-rs/pull/148)

Expand Down Expand Up @@ -226,7 +226,7 @@ being statically hardcoded, reducing the binary size by 31Mb.
- Improve support for japanese
- Rename python package to `snips_nlu_rust`

[Unreleased]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.0...HEAD
[0.65.1]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.0...0.65.1
[0.65.0]: https://github.com/snipsco/snips-nlu-rs/compare/0.64.4...0.65.0
[0.64.4]: https://github.com/snipsco/snips-nlu-rs/compare/0.64.3...0.64.4
[0.64.3]: https://github.com/snipsco/snips-nlu-rs/compare/0.64.2...0.64.3
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snips-nlu-lib"
version = "0.66.0-SNAPSHOT"
version = "0.65.1"
authors = [
"Adrien Ball <adrien.ball@snips.ai>",
"Clement Doumouro <clement.doumouro@snips.ai>",
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.66.0-SNAPSHOT"
version = "0.65.1"
edition = "2018"
authors = [
"Adrien Ball <adrien.ball@snips.ai>",
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.66.0-SNAPSHOT\""
header = "#define SNIPS_NLU_VERSION \"0.65.1\""

[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.66.0-SNAPSHOT"
#define SNIPS_NLU_VERSION "0.65.1"

#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.66.0-SNAPSHOT"
version = "0.65.1"
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.66.0-SNAPSHOT"
version = "0.65.1"
authors = ["Adrien Ball <adrien.ball@snips.ai>"]
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 = { path = "../../../ffi" }
snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.65.1" }
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.66.0-SNAPSHOT
0.65.1
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.66.0-SNAPSHOT"
VERSION="0.65.1"
SYSTEM=$(echo $1 | tr '[:upper:]' '[:lower:]')
LIBRARY_NAME=libsnips_nlu_ffi
LIBRARY_NAME_A=${LIBRARY_NAME}.a
Expand Down

0 comments on commit 5266f81

Please sign in to comment.