From 3fcbe8e6dbb06da3165dd35da04de623e50343a6 Mon Sep 17 00:00:00 2001 From: Barbara Vreede Date: Tue, 13 Dec 2022 15:27:18 +0100 Subject: [PATCH] Prepare release for v 1.3.2 (#132) * add E Malinina as contributor, bump version, add to changelog * remove duplicate in citation file * remove python 3.6 from actions * add python 3.10 as string cf https://github.com/actions/setup-python/issues/160 * all versions are strings Co-authored-by: Bart Schilperoort Co-authored-by: Bart Schilperoort --- .github/workflows/test_codecov.yml | 2 +- CHANGELOG.rst | 6 ++++++ CITATION.cff | 4 ++-- era5cli/__version__.py | 4 ++-- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_codecov.yml b/.github/workflows/test_codecov.yml index a43879b..5179c34 100644 --- a/.github/workflows/test_codecov.yml +++ b/.github/workflows/test_codecov.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ['3.7', '3.8', '3.9', '3.10'] name: Run tests for ${{ matrix.python-version }} steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 68eadca..1601d09 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Release Notes ************* +1.3.2 (2021-12-13) +~~~~~~~~~~~~~~~~~~ +* Elaborate the range of years that can be queried `#123 `_ +* Update Readthedocs theme `#125 `_ +* Fix a bug that allowed the incompatible combination of --land and --ensemble `#131 `_ + 1.3.1 (2021-12-01) ~~~~~~~~~~~~~~~~~~ * Automatic Zenodo/RSD release failed; updated contribution guidelines `#106 `_ diff --git a/CITATION.cff b/CITATION.cff index 1df530f..78ecb84 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -84,7 +84,7 @@ authors: orcid: https://orcid.org/0000-0002-4102-2877 cff-version: 1.2.0 -date-released: 2021-11-30 +date-released: 2022-12-13 doi: 10.5281/zenodo.3252665 keywords: - "ERA5" @@ -92,4 +92,4 @@ license: Apache-2.0 message: "If you use this software, please cite it using these metadata." repository-code: "https://github.com/ewatercycle/era5cli" title: era5cli -version: 1.3.1 +version: 1.3.2 diff --git a/era5cli/__version__.py b/era5cli/__version__.py index 6b9a8ef..35bdd8e 100644 --- a/era5cli/__version__.py +++ b/era5cli/__version__.py @@ -10,6 +10,6 @@ 'Niels Drost', 'Fakhereh Alidoost', 'Bouwe Andela', 'Jerom Aerts', 'Berend Weel', 'Rolf Hut', 'Klaus Zimmermann', 'Peter Kalverla', 'Barbara Vreede', 'Aytaç Paçal', 'Stef Smeets', - 'Stefan Verhoeven') + 'Stefan Verhoeven', 'Elizaveta Malinina') __email__ = 'ewatercycle@esciencecenter.nl' -__version__ = '1.3.1' +__version__ = '1.3.2'