diff --git a/.cz.yaml b/.cz.yaml index 816219a6..c2d69e89 100644 --- a/.cz.yaml +++ b/.cz.yaml @@ -3,7 +3,7 @@ commitizen: changelog_incremental: true tag_format: v_$major.$minor.$patch$prerelease update_changelog_on_bump: true - version: 2.10.1 + version: 2.10.2 version_files: - setup.py:version - sepal_ui/__init__.py:__version__ diff --git a/CHANGELOG.md b/CHANGELOG.md index 2649a6c5..fb338910 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v_2.10.2 (2022-07-28) + +### Fix + +- use appropiate error +- lazy import of localtileserver + ## v_2.10.1 (2022-07-25) ### Fix diff --git a/sepal_ui/__init__.py b/sepal_ui/__init__.py index f987bd6e..64d44a80 100644 --- a/sepal_ui/__init__.py +++ b/sepal_ui/__init__.py @@ -5,7 +5,7 @@ __author__ = """Pierrick Rambaud""" __email__ = "pierrick.rambaud49@gmail.com" -__version__ = "2.10.1" +__version__ = "2.10.2" color = SepalColor() 'color: the colors of sepal. members are in the following list: "main, darker, bg, primary, accent, secondary, success, info, warning, error, menu". They will render according to the selected theme.' diff --git a/setup.py b/setup.py index 420e1a0f..de98d00d 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup from setuptools.command.develop import develop -version = "2.10.1" +version = "2.10.2" DESCRIPTION = "Wrapper for ipyvuetify widgets to unify the display of voila dashboards in SEPAL platform" LONG_DESCRIPTION = open("README.rst").read()