Skip to content

Commit 12f3e3b

Browse files
authored
Merge pull request #143 from snipsco/release/0.64.8
Release 0.64.8
2 parents d08a2e9 + 5ae2fa8 commit 12f3e3b

File tree

13 files changed

+32
-15
lines changed

13 files changed

+32
-15
lines changed

.travis.yml

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
language: rust
2-
31
env:
42
global:
53
- RUST_BACKTRACE=1
64

7-
matrix:
5+
jobs:
86
include:
9-
- rust: stable
7+
- language: java
8+
jdk: openjdk8
109
env: KOTLIN_TESTS=true
11-
- rust: beta
12-
- rust: nightly
10+
- language: rust
11+
rust: beta
12+
- language: rust
13+
rust: nightly
1314
allow_failures:
14-
- rust: nightly
15+
- language: rust
16+
rust: nightly
1517

1618
script: ".travis/travis.sh"

.travis/travis.sh

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
#!/bin/bash
22
set -ev
33

4+
# Install Rust
5+
if [[ -z ${TRAVIS_RUST_VERSION+w} ]]; then
6+
curl https://sh.rustup.rs -sSf | bash -s -- -y
7+
fi
8+
9+
export PATH="$HOME/.cargo/bin:$PATH"
10+
411
cargo build --all
512
cargo test --all
613

CHANGELOG.md

+5
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.64.8] - 2019-07-10
5+
### Fixed
6+
- Fix issue with libc and `Send` trait
7+
48
## [0.64.7] - 2019-06-18
59
### Fixed
610
- Portuguese builtin entity examples
@@ -175,6 +179,7 @@ All notable changes to this project will be documented in this file.
175179
### Changed
176180
- Updated Rustling ontology to `0.16.4`
177181

182+
[0.64.8]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.7...0.64.8
178183
[0.64.7]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.6...0.64.7
179184
[0.64.6]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.5...0.64.6
180185
[0.64.5]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.4...0.64.5

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snips-nlu-ontology"
3-
version = "0.64.7"
3+
version = "0.64.8"
44
authors = [
55
"Adrien Ball <adrien.ball@snips.ai>",
66
"Thibaut Lorrain <thibaut.lorrain@snips.ai>",

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Snips NLU Ontology
22
==================
33

4-
.. image:: https://travis-ci.org/snipsco/snips-nlu-ontology.svg?branch=develop
4+
.. image:: https://travis-ci.org/snipsco/snips-nlu-ontology.svg?branch=master
55
:target: https://travis-ci.org/snipsco/snips-nlu-ontology
66

77
Ontology of the Snips NLU library API which describes supported languages and builtin entities.

doc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snips-nlu-ontology-doc"
3-
version = "0.64.7"
3+
version = "0.64.8"
44
authors = ["Adrien Ball <adrien.ball@snips.ai>"]
55
edition = "2018"
66

doc/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ fn add_header(readme: &mut String) {
2727
readme.push_str("\n");
2828

2929
readme.push_str(
30-
".. image:: https://travis-ci.org/snipsco/snips-nlu-ontology.svg?branch=develop\n",
30+
".. image:: https://travis-ci.org/snipsco/snips-nlu-ontology.svg?branch=master\n",
3131
);
3232
readme.push_str(" :target: https://travis-ci.org/snipsco/snips-nlu-ontology\n");
3333
readme.push_str("\n");

ffi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snips-nlu-ontology-ffi"
3-
version = "0.64.7"
3+
version = "0.64.8"
44
authors = ["Kevin Lefevre <kevin.lefevre@snips.ai>"]
55
edition = "2018"
66

ffi/ffi-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snips-nlu-ontology-ffi-macros"
3-
version = "0.64.7"
3+
version = "0.64.8"
44
authors = [
55
"Kevin Lefevre <kevin.lefevre@snips.ai>",
66
"Thibaut Lorrain <thibaut.lorrain@snips.ai>",

ffi/ffi-macros/src/builtin_entity.rs

+2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,10 @@ impl Drop for CBuiltinEntityArray {
7878
// ffi's type `*const libc::c_char` isn't
7979
struct DummyWrapper(Box<[*const libc::c_char]>);
8080

81+
unsafe impl Send for DummyWrapper {}
8182
unsafe impl Sync for DummyWrapper {}
8283

84+
8385
pub fn all_builtin_entities() -> CStringArray {
8486
lazy_static! {
8587
static ref ALL: DummyWrapper = {

ffi/ffi-macros/src/language.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ use snips_nlu_ontology::Language;
99
// ffi's type `*const libc::c_char` isn't
1010
struct DummyWrapper(Box<[*const libc::c_char]>);
1111

12+
unsafe impl Send for DummyWrapper {}
1213
unsafe impl Sync for DummyWrapper {}
1314

1415
pub fn supported_languages() -> CStringArray {

platforms/kotlin/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99
}
1010

11-
version = "0.64.7"
11+
version = "0.64.8"
1212
group = "ai.snips"
1313

1414

platforms/kotlin/snips-nlu-ontology-export/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.64.7"
1+
version = "0.64.8"
22
group = "ai.snips"
33

44

0 commit comments

Comments
 (0)