From 69f8c936ba38e480a9ad0074fe54c1e675098eec Mon Sep 17 00:00:00 2001 From: 12rambau Date: Tue, 13 Sep 2022 06:55:50 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=202.11.2=20=E2=86=92=202.12.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cz.yaml | 2 +- CHANGELOG.md | 13 +++++++++++++ sepal_ui/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.cz.yaml b/.cz.yaml index e9b4a83a..b0b54b74 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.11.2 + version: 2.12.0 version_files: - setup.py:version - sepal_ui/__init__.py:__version__ diff --git a/CHANGELOG.md b/CHANGELOG.md index dedb9c8e..00bb691c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## v_2.12.0 (2022-09-13) + +### Fix + +- set the drawer on top of the appbar +- remove alert from aoi_model and add model as optional in aoi_view +- remove alert from aoi_model and add model as optional in aoi_view This is a solution in order to close #589 +- set the navbar on top of the appbar + +### Feat + +- creates a default layer style to add_ee_layers. closes #425. + ## v_2.11.2 (2022-09-01) ### Fix diff --git a/sepal_ui/__init__.py b/sepal_ui/__init__.py index d077d1cc..5e32dbde 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.11.2" +__version__ = "2.12.0" 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 edefd3c7..f32708a8 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup from setuptools.command.develop import develop -version = "2.11.2" +version = "2.12.0" DESCRIPTION = "Wrapper for ipyvuetify widgets to unify the display of voila dashboards in SEPAL platform" LONG_DESCRIPTION = open("README.rst").read()