diff --git a/CHANGES.rst b/CHANGES.rst index d9454043d..f69c45d54 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,19 +2,19 @@ Changelog ========= -v0.47.0 (unreleased) +v0.47.0 (2023-12-01) -------------------- Contributors to this version: Juliette Lavoie (:user:`juliettelavoie`), Pascal Bourgault (:user:`aulemahal`), Trevor James Smith (:user:`Zeitsperre`), David Huard (:user:`huard`), Éric Dupuis (:user:`coxipi`). Announcements ^^^^^^^^^^^^^ -* To circumvent issues stemming from changes to the frequency code convention in `pandas` v2.2, we have pinned `xarray` (< 2023.11.0) and `pandas` (< 2.2) for this release. This change will be reverted in `xclim` v0.48.0 to support the newer versions (`xarray>= 2023.11.0` and `pandas>= 2.2`). +* To circumvent issues stemming from changes to the frequency code convention in `pandas` v2.2, we have pinned `xarray` (< 2023.11.0) and `pandas` (< 2.2) for this release. This change will be reverted in `xclim` v0.48.0 to support the newer versions. (`xarray>= 2023.11.0` and `pandas>= 2.2`). * `xclim` v0.47.0 will be the last release supporting Python3.8. New features and enhancements ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -* New functions ``xclim.ensembles.robustness_fractions`` and ``xclim.ensembles.robustness_categories``. The former will replace ``xclim.ensembles.change_significance`` which is now deprecated and will be removed in xclim 0.49. (:pull:`1514`). -* Add indicator ID to searched terms in the indicator search documentation page. (:issue:`1525`, :pull:`1528`). +* New functions ``xclim.ensembles.robustness_fractions`` and ``xclim.ensembles.robustness_categories``. The former will replace ``xclim.ensembles.change_significance`` which is now deprecated and will be removed in `xclim` v0.49.0. (:pull:`1514`). +* Added indicator ID to searched terms in the indicator search documentation page. (:issue:`1525`, :pull:`1528`). Bug fixes ^^^^^^^^^ diff --git a/setup.cfg b/setup.cfg index e37004249..72c7825f7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.46.11-beta +current_version = 0.47.0 commit = True tag = False parse = (?P\d+)\.(?P\d+).(?P\d+)(\-(?P[a-z]+))? diff --git a/xclim/__init__.py b/xclim/__init__.py index 3e0a3b164..c70429906 100644 --- a/xclim/__init__.py +++ b/xclim/__init__.py @@ -15,7 +15,7 @@ __author__ = """Travis Logan""" __email__ = "logan.travis@ouranos.ca" -__version__ = "0.46.11-beta" +__version__ = "0.47.0" _module_data = _files("xclim.data")