diff options
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | eiq/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -1,3 +1,5 @@ +1.0.1: + - Fix fire detection model ID. 1.0.0: - Support demos based on TensorFlow Lite (2.1.0) and image classification. - Support inference running on GPU/NPU and CPU. diff --git a/eiq/__init__.py b/eiq/__init__.py index 5becc17..5c4105c 100644 --- a/eiq/__init__.py +++ b/eiq/__init__.py @@ -1 +1 @@ -__version__ = "1.0.0" +__version__ = "1.0.1" @@ -10,7 +10,7 @@ from setuptools import setup, find_packages from eiq.utils import copy setup(name="eiq", -version="1.0", +version="1.0.1", description="eIQ package provides classes and scripts to manage the eIQ Samples Apps.", url="", author="Alifer Moraes <alifer.moraes@nxp.com>, Diego Dorta <diego.dorta@nxp.com>, Marco Franchi <marco.franchi@nxp.com>", |