Skip to content

Commit 5266f81

Browse files
authored
Release/0.65.1 (#149)
1 parent cd31190 commit 5266f81

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

CHANGELOG.md

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

4-
## [Unreleased]
4+
## [0.65.1] - 2019-09-04
55
### Added
66
- 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)
77

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

229-
[Unreleased]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.0...HEAD
229+
[0.65.1]: https://github.com/snipsco/snips-nlu-rs/compare/0.65.0...0.65.1
230230
[0.65.0]: https://github.com/snipsco/snips-nlu-rs/compare/0.64.4...0.65.0
231231
[0.64.4]: https://github.com/snipsco/snips-nlu-rs/compare/0.64.3...0.64.4
232232
[0.64.3]: https://github.com/snipsco/snips-nlu-rs/compare/0.64.2...0.64.3

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.66.0-SNAPSHOT"
3+
version = "0.65.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.66.0-SNAPSHOT"
3+
version = "0.65.1"
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.66.0-SNAPSHOT\""
5+
header = "#define SNIPS_NLU_VERSION \"0.65.1\""
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.66.0-SNAPSHOT"
1+
#define SNIPS_NLU_VERSION "0.65.1"
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.66.0-SNAPSHOT"
14+
version = "0.65.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.66.0-SNAPSHOT"
3+
version = "0.65.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 = { path = "../../../ffi" }
14+
snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.65.1" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.66.0-SNAPSHOT
1+
0.65.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.66.0-SNAPSHOT"
7+
VERSION="0.65.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)