From 9cad4f986c71f1e044830fad7bc5da05ffe10dd7 Mon Sep 17 00:00:00 2001 From: 12rambau Date: Wed, 15 Sep 2021 14:11:59 +0000 Subject: [PATCH 1/3] fix: typo in setup --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c3fe28c1..f2ccc81c 100644 --- a/setup.py +++ b/setup.py @@ -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(), From 1419a920481931aaa47a23e5a918fcc324b135b6 Mon Sep 17 00:00:00 2001 From: 12rambau Date: Wed, 15 Sep 2021 14:14:13 +0000 Subject: [PATCH 2/3] ci: publish changelog with tags --- .cz.yaml | 1 + 1 file changed, 1 insertion(+) 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 From 8ba91ff56a928fda2bc0e5137d17772f33f639ed Mon Sep 17 00:00:00 2001 From: 12rambau Date: Wed, 15 Sep 2021 14:18:54 +0000 Subject: [PATCH 3/3] =?UTF-8?q?bump:=20version=202.1.0=20=E2=86=92=202.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sepal_ui/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 f2ccc81c..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",