diff --git a/.cz.yaml b/.cz.yaml index 0325b8ba..c448bdb2 100644 --- a/.cz.yaml +++ b/.cz.yaml @@ -5,3 +5,4 @@ commitizen: version_files: - setup.py - sepal_ui/__init__.py + update_changelog_on_bump: true diff --git a/sepal_ui/__init__.py b/sepal_ui/__init__.py index f7c4f337..19de526f 100644 --- a/sepal_ui/__init__.py +++ b/sepal_ui/__init__.py @@ -2,7 +2,7 @@ __author__ = """Pierrick Rambaud""" __email__ = "pierrick.rambaud49@gmail.com" -__version__ = "2.1.0" +__version__ = "2.1.1" # direct access to colors from sepal_ui.frontend import styles diff --git a/setup.py b/setup.py index c3fe28c1..f596a1a7 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from distutils.core import setup from pathlib import Path -version = "2.1.0" +version = "2.1.1" setup( name="sepal_ui", @@ -26,7 +26,7 @@ "bin/module_factory", ] }, - version=_version, + version=version, license="MIT", description="Wrapper for ipyvuetify widgets to unify the display of voila dashboards in SEPAL platform", long_description=open("README.rst").read(),