Skip to content

Commit

Permalink
bump: version 2.12.0 → 2.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau committed Dec 11, 2022
1 parent 455a651 commit 834bb5f
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ commitizen:
changelog_incremental: true
tag_format: v_$major.$minor.$patch$prerelease
update_changelog_on_bump: true
version: 2.12.0
version: 2.13.0
version_files:
- setup.py:version
- sepal_ui/__init__.py:__version__
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
## v_2.13.0 (2022-12-11)

### Fix

- drop use of Request from planet
- drop use of Request from planet The method was removed from the lib between 2.0.a2 and 2.0.a6
- update_progress accept values >1
- remove left when only icon is set
- update_progress accept values >1
- replace all deprecated fas and far
- remove left when only icon is set
- change map application title Fix #642
- update all relaining gee widgets
- support pathlib path Fix #628 Fix #629
- create a specific aoi_dc on the map
- adapt to most recent gee token
- create a specific aoi_dc on the map Fix #595
- set icon and text as traits in btn
- set icon and text as traits in btn
- keep default asset when reloading
- fixswitcher path for local build
- keep default asset when reloading
- set z-index to select content. closes #602
- legacy print

### Feat

- use fontawesome V6
- use the credential from the context to GEE oAuth
- add a method to set-up GEE credentials
- improve date picker widget customization
- add layout kwargs
- improve date picker widget customization. closes #600

### Refactor

- always keep msg and v_icon children
- use the cred fixture
- isort
- isort
- isort
- run latest isort
- run latest isort
- fileInput was using icon and text
- rename parameters in the reclassify module
- remove legacy prints

## v_2.12.0 (2022-09-13)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion sepal_ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

__author__ = """Pierrick Rambaud"""
__email__ = "[email protected]"
__version__ = "2.12.0"
__version__ = "2.13.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.'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup
from setuptools.command.develop import develop

version = "2.12.0"
version = "2.13.0"

DESCRIPTION = "Wrapper for ipyvuetify widgets to unify the display of voila dashboards in SEPAL platform"
LONG_DESCRIPTION = open("README.rst").read()
Expand Down

0 comments on commit 834bb5f

Please sign in to comment.