diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f875c11..40fbeaa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog All notable changes to this project will be documented in this file. -## [Unreleased] +## [0.19.2] ### Fixed - Fix chrono issue and move to rust edition 2018 [#194](https://github.com/snipsco/rustling-ontology/pull/194) - Bump rustling to `0.9.1` [#195](https://github.com/snipsco/rustling-ontology/pull/195) @@ -56,6 +56,7 @@ All notable changes to this project will be documented in this file. ### Changed - Fuller coverage of Spanish and Italian +[0.19.2]: https://github.com/snipsco/rustling-ontology/compare/0.19.1...0.19.2 [0.19.1]: https://github.com/snipsco/rustling-ontology/compare/0.19.0...0.19.1 [0.19.0]: https://github.com/snipsco/rustling-ontology/compare/0.18.1...0.19.0 [0.18.1]: https://github.com/snipsco/rustling-ontology/compare/0.18.0...0.18.1 diff --git a/Cargo.toml b/Cargo.toml index 1f2d4aa7..bf54629f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj "] build = "build.rs" edition = "2018" diff --git a/cli-debug/Cargo.toml b/cli-debug/Cargo.toml index 23bb5be0..39c3a424 100644 --- a/cli-debug/Cargo.toml +++ b/cli-debug/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-cli-debug" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj ", "Mathieu Poumeyrol "] edition = "2018" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 8de8898b..03012c44 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-cli" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj ", "Mathieu Poumeyrol "] edition = "2018" diff --git a/grammar/Cargo.toml b/grammar/Cargo.toml index 01aab5ac..682f7f87 100644 --- a/grammar/Cargo.toml +++ b/grammar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-grammar" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj "] edition = "2018" diff --git a/grammar/de/Cargo.toml b/grammar/de/Cargo.toml index f05b2791..92d812e7 100644 --- a/grammar/de/Cargo.toml +++ b/grammar/de/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-de" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj "] edition = "2018" diff --git a/grammar/en/Cargo.toml b/grammar/en/Cargo.toml index 9158f68a..ae54d01d 100644 --- a/grammar/en/Cargo.toml +++ b/grammar/en/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-en" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj "] edition = "2018" diff --git a/grammar/es/Cargo.toml b/grammar/es/Cargo.toml index e47949da..8275ccb5 100644 --- a/grammar/es/Cargo.toml +++ b/grammar/es/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-es" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj "] edition = "2018" diff --git a/grammar/fr/Cargo.toml b/grammar/fr/Cargo.toml index 3b183db0..447f88ab 100644 --- a/grammar/fr/Cargo.toml +++ b/grammar/fr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-fr" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj "] edition = "2018" diff --git a/grammar/it/Cargo.toml b/grammar/it/Cargo.toml index 2a6eb302..a2cde38e 100644 --- a/grammar/it/Cargo.toml +++ b/grammar/it/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-it" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj "] edition = "2018" diff --git a/grammar/ja/Cargo.toml b/grammar/ja/Cargo.toml index 7c06b3e3..915fc684 100644 --- a/grammar/ja/Cargo.toml +++ b/grammar/ja/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-ja" -version = "0.19.1" +version = "0.19.2" authors = ["Anaïs "] edition = "2018" diff --git a/grammar/ko/Cargo.toml b/grammar/ko/Cargo.toml index d02826be..79379e12 100644 --- a/grammar/ko/Cargo.toml +++ b/grammar/ko/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-ko" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj "] edition = "2018" diff --git a/grammar/pt/Cargo.toml b/grammar/pt/Cargo.toml index c0c3d661..64763e2d 100644 --- a/grammar/pt/Cargo.toml +++ b/grammar/pt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-pt" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj "] edition = "2018" diff --git a/grammar/zh/Cargo.toml b/grammar/zh/Cargo.toml index a9bb4427..a036cc75 100644 --- a/grammar/zh/Cargo.toml +++ b/grammar/zh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-zh" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj "] edition = "2018" diff --git a/json-utils/Cargo.toml b/json-utils/Cargo.toml index 84748295..c2b67175 100644 --- a/json-utils/Cargo.toml +++ b/json-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-json-utils" -version = "0.19.1" +version = "0.19.2" authors = ["Hubert De La Jonquiere "] edition = "2018" diff --git a/moment/Cargo.toml b/moment/Cargo.toml index 39cd6d44..97ede664 100644 --- a/moment/Cargo.toml +++ b/moment/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-moment" -version = "0.19.1" +version = "0.19.2" authors = ["hdlj "] edition = "2018" diff --git a/values/Cargo.toml b/values/Cargo.toml index ec22a697..ea517dee 100644 --- a/values/Cargo.toml +++ b/values/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustling-ontology-values" -version = "0.19.1" +version = "0.19.2" authors = ["Mathieu Poumeyrol "] edition = "2018"