Skip to content

Commit

Permalink
Merge pull request #404 from 12rambau/master
Browse files Browse the repository at this point in the history
v_2.6.1
  • Loading branch information
12rambau authored Feb 17, 2022
2 parents a8fff7f + 8ab250f commit 8ff7d75
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .cz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ commitizen:
changelog_file: CHANGELOG.md
tag_format: v_$major.$minor.$patch$prerelease
update_changelog_on_bump: false
version: 2.6.0
version: 2.6.1
version_files:
- setup.py:version
- sepal_ui/__init__.py:__version__
23 changes: 12 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
## v_2.6.0 (2022-02-16)

### Refactor

- ignore untitled files
- typo in class name
- remove __setattr__ magic method.
- reshape messages to fit the translator requirements
- replace every occurence of mdi icons
- use `/` in Path
- cleaning
## v_2.6.1 (2022-02-17)

### Fix

- add the message file in the distrib
- remove fr file from merge
- avoid deprecation by reshaping dictionnary
- remove {locale}.json files
Expand All @@ -30,6 +21,16 @@
- prevent bug when image have no properties Fix #361
- git based libs are not compatible with pipy

### Refactor

- ignore untitled files
- typo in class name
- remove __setattr__ magic method.
- reshape messages to fit the translator requirements
- replace every occurence of mdi icons
- use `/` in Path
- cleaning

### Feat

- change translator behaviour to meet l10n requirements
Expand Down
2 changes: 1 addition & 1 deletion sepal_ui/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = """Pierrick Rambaud"""
__email__ = "[email protected]"
__version__ = "2.6.0"
__version__ = "2.6.1"

# direct access to colors
from sepal_ui.frontend import styles
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools.command.develop import develop
from subprocess import check_call

version = "2.6.0"
version = "2.6.1"

DESCRIPTION = "Wrapper for ipyvuetify widgets to unify the display of voila dashboards in SEPAL platform"
LONG_DESCRIPTION = open("README.rst").read()
Expand Down Expand Up @@ -84,7 +84,7 @@ def run(self):
"scripts/*.csv",
"scripts/*.md",
"scripts/*.json",
"message/*.json",
"message/**/*.json",
"bin/*",
]
},
Expand Down

0 comments on commit 8ff7d75

Please sign in to comment.