Skip to content

Commit d08a2e9

Browse files
authored
Release/0.64.7
1 parent 57fbaa2 commit d08a2e9

File tree

8 files changed

+12
-7
lines changed

8 files changed

+12
-7
lines changed

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.7] - 2019-06-18
5+
### Fixed
6+
- Portuguese builtin entity examples
7+
48
## [0.64.6] - 2019-04-08
59
### Added
610
- Add converters from C to Rust for ontology objects [#135](https://github.com/snipsco/snips-nlu-ontology/pull/135)
@@ -171,6 +175,7 @@ All notable changes to this project will be documented in this file.
171175
### Changed
172176
- Updated Rustling ontology to `0.16.4`
173177

178+
[0.64.7]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.6...0.64.7
174179
[0.64.6]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.5...0.64.6
175180
[0.64.5]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.4...0.64.5
176181
[0.64.4]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.3...0.64.4

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.6"
3+
version = "0.64.7"
44
authors = [
55
"Adrien Ball <adrien.ball@snips.ai>",
66
"Thibaut Lorrain <thibaut.lorrain@snips.ai>",

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.6"
3+
version = "0.64.7"
44
authors = ["Adrien Ball <adrien.ball@snips.ai>"]
55
edition = "2018"
66

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.6"
3+
version = "0.64.7"
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.6"
3+
version = "0.64.7"
44
authors = [
55
"Kevin Lefevre <kevin.lefevre@snips.ai>",
66
"Thibaut Lorrain <thibaut.lorrain@snips.ai>",

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.6"
11+
version = "0.64.7"
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.6"
1+
version = "0.64.7"
22
group = "ai.snips"
33

44

src/entity/builtin_entity.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ impl BuiltinEntityKind {
455455
"2001",
456456
],
457457
BuiltinEntityKind::Ordinal => &[
458-
"primera",
458+
"primeira",
459459
],
460460
BuiltinEntityKind::Temperature => &[
461461
"70 graus kelvin",

0 commit comments

Comments
 (0)