diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bb9145f..eab6e3f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # Changelog -## [2022.6.23](https://github.com/CasperWA/voila-optimade-client/tree/2022.6.23) (2022-06-15) +## [2022.9.19](https://github.com/CasperWA/voila-optimade-client/tree/2022.9.19) (2022-09-19) + +[Full Changelog](https://github.com/CasperWA/voila-optimade-client/compare/2022.6.23...2022.9.19) + +**Merged pull requests:** + +- Don't use v1.2.1 from `ipywidgets-extended` [\#458](https://github.com/CasperWA/voila-optimade-client/pull/458) ([CasperWA](https://github.com/CasperWA)) +- Populate raw filter string from basic filter [\#457](https://github.com/CasperWA/voila-optimade-client/pull/457) ([eimrek](https://github.com/eimrek)) +- Update dependencies [\#455](https://github.com/CasperWA/voila-optimade-client/pull/455) ([CasperWA](https://github.com/CasperWA)) +- Update dependencies [\#452](https://github.com/CasperWA/voila-optimade-client/pull/452) ([CasperWA](https://github.com/CasperWA)) +- Update dependencies [\#450](https://github.com/CasperWA/voila-optimade-client/pull/450) ([CasperWA](https://github.com/CasperWA)) +- Move default database providers defaults setup parameters to one file [\#449](https://github.com/CasperWA/voila-optimade-client/pull/449) ([unkcpz](https://github.com/unkcpz)) +- Logger clean and handler explicitly import [\#447](https://github.com/CasperWA/voila-optimade-client/pull/447) ([unkcpz](https://github.com/unkcpz)) +- SortSelector widget use nsites as default field to sort [\#445](https://github.com/CasperWA/voila-optimade-client/pull/445) ([unkcpz](https://github.com/unkcpz)) +- Update dependencies [\#444](https://github.com/CasperWA/voila-optimade-client/pull/444) ([CasperWA](https://github.com/CasperWA)) + +## [2022.6.23](https://github.com/CasperWA/voila-optimade-client/tree/2022.6.23) (2022-06-23) [Full Changelog](https://github.com/CasperWA/voila-optimade-client/compare/2022.6.9...2022.6.23) diff --git a/optimade_client/__init__.py b/optimade_client/__init__.py index 8ab30c0d..f9d8b4b6 100644 --- a/optimade_client/__init__.py +++ b/optimade_client/__init__.py @@ -9,7 +9,7 @@ from .summary import OptimadeSummaryWidget -__version__ = "2022.6.23" +__version__ = "2022.9.19" __all__ = ( "HeaderDescription", "OptimadeClientFAQ", diff --git a/optimade_client/cli/run.py b/optimade_client/cli/run.py index ff058957..ec81d577 100644 --- a/optimade_client/cli/run.py +++ b/optimade_client/cli/run.py @@ -12,7 +12,7 @@ LOGGING_LEVELS = [logging.getLevelName(level).lower() for level in range(0, 51, 10)] -VERSION = "2022.6.23" # Avoid importing optimade-client package +VERSION = "2022.9.19" # Avoid importing optimade-client package def main(args: list = None): diff --git a/optimade_client/informational.py b/optimade_client/informational.py index f885f3a3..8599baba 100644 --- a/optimade_client/informational.py +++ b/optimade_client/informational.py @@ -34,7 +34,7 @@ class HeaderDescription(ipw.VBox): HEADER = f"""

Currently valid OPTIMADE API version: v{__optimade_version__[0]}
-Client version: 2022.6.23
+Client version: 2022.9.19
Source code: GitHub

""" diff --git a/setup.py b/setup.py index 6b52072c..f359346b 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name="optimade-client", - version="2022.6.23", + version="2022.9.19", license="MIT License", author="Casper Welzel Andersen", author_email="casper+github@welzel.nu",