From 154bc6d14904f6999b42ca944330001ce2fa028f Mon Sep 17 00:00:00 2001 From: Adrien Ball Date: Fri, 16 Jun 2017 14:01:42 +0200 Subject: [PATCH] Bump version and update README --- README.md | 13 ++++++++++++- snips_nlu/__version__ | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 724a19db8..784ec89ad 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ -# Snips NLU (0.8.6) +# Snips NLU (0.8.7) [![Build Status](https://jenkins2.snips.ai/buildStatus/icon?job=SDK/snips-nlu/master)](https://jenkins2.snips.ai/job/SDK/job/snips-nlu/view/Branches/job/master) +**Model Version (0.8.5)** + ## Production Use Python wheels of the `snips-nlu` package can be found on the nexus repository at this URL: https://nexus-repository.snips.ai/#browse/browse/components:pypi-internal @@ -106,3 +108,12 @@ engine.fitted # True ``` where `dataset` is a dictionary which format is described [here](https://github.com/snipsco/snips-nlu/blob/develop/snips_nlu/tests/resources/sample_dataset.json) + +### Versioning +The NLU Engine has a separated versioning for the underlying model: +``` python +import snips_nlu + +model_version = snips_nlu.__model_version__ +python_package_version = snips_nlu.__version__ +``` diff --git a/snips_nlu/__version__ b/snips_nlu/__version__ index 120f53215..35864a97f 100644 --- a/snips_nlu/__version__ +++ b/snips_nlu/__version__ @@ -1 +1 @@ -0.8.6 \ No newline at end of file +0.8.7 \ No newline at end of file