Skip to content

Commit ebd3f74

Browse files
authored
Merge pull request #131 from snipsco/hotfix/remove-pt-examples
Remove unparsed examples
2 parents 398ff8b + 1a9a0a7 commit ebd3f74

File tree

8 files changed

+11
-9
lines changed

8 files changed

+11
-9
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.4] - 2019-02-28
5+
### Fixed
6+
- Portuguese builtin entity examples
7+
48
## [0.64.3] - 2019-02-27
59
### Fixed
610
- Portuguese builtin entity examples
@@ -156,6 +160,7 @@ All notable changes to this project will be documented in this file.
156160
### Changed
157161
- Updated Rustling ontology to `0.16.4`
158162

163+
[0.64.4]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.3...0.64.4
159164
[0.64.3]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.2...0.64.3
160165
[0.64.2]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.1...0.64.2
161166
[0.64.1]: https://github.com/snipsco/snips-nlu-ontology/compare/0.64.0...0.64.1

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

44

src/entity/builtin_entity.rs

-3
Original file line numberDiff line numberDiff line change
@@ -462,16 +462,13 @@ impl BuiltinEntityKind {
462462
"3°C",
463463
"dez graus",
464464
"quatro graus centígrados",
465-
"sete graus abaixo cero",
466465
"-459,67 °F",
467466
],
468467
BuiltinEntityKind::Time => &[
469468
"hoje",
470469
],
471470
BuiltinEntityKind::Percentage => &[
472471
"25%",
473-
"quatro porciento",
474-
"quatro por ciento",
475472
],
476473
BuiltinEntityKind::MusicAlbum => &["Discovery"],
477474
BuiltinEntityKind::MusicArtist => &["Daft Punk"],

0 commit comments

Comments
 (0)