From 85d01eab68eb9c5af0abd86a712befe1211f72b0 Mon Sep 17 00:00:00 2001 From: aloctavodia Date: Thu, 6 Mar 2025 10:31:02 +0200 Subject: [PATCH 1/2] prepare release --- CHANGELOG.md | 6 +++++- arviz/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 687b1db477..5c9e7892ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## Unreleased +## v0.21.0 (2025 Mar 06) ### New features @@ -13,6 +13,10 @@ ### Documentation - Add example of ECDF comparison plot to gallery ([2178](https://github.com/arviz-devs/arviz/pull/2178)) +- Change Twitter to X, including the icon ([2418](https://github.com/arviz-devs/arviz/pull/2418)) +- Update Bokeh link in Installation.rst ([2425](https://github.com/arviz-devs/arviz/pull/2425)) +- Add missing periods to the ArviZ community page ([2426](https://github.com/arviz-devs/arviz/pull/2426)) +- Fix missing docstring ([2430](https://github.com/arviz-devs/arviz/pull/2430)) ## v0.20.0 (2024 Sep 28) diff --git a/arviz/__init__.py b/arviz/__init__.py index 67cd00082b..0687127c6b 100644 --- a/arviz/__init__.py +++ b/arviz/__init__.py @@ -1,6 +1,6 @@ # pylint: disable=wildcard-import,invalid-name,wrong-import-position """ArviZ is a library for exploratory analysis of Bayesian models.""" -__version__ = "0.20.0" +__version__ = "0.21.0" import logging import os From 91641540195bdfc1c43170af6f63ad46d0b4cd3a Mon Sep 17 00:00:00 2001 From: aloctavodia Date: Thu, 6 Mar 2025 10:42:51 +0200 Subject: [PATCH 2/2] fix long line --- arviz/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arviz/utils.py b/arviz/utils.py index 4a7e6b776d..9182fe25fc 100644 --- a/arviz/utils.py +++ b/arviz/utils.py @@ -735,7 +735,8 @@ class Dask: dask_flag = False """bool: Enables Dask parallelization when set to True. Defaults to False.""" dask_kwargs = None - """dict: Additional keyword arguments for Dask configuration. Defaults to an empty dictionary.""" + """dict: Additional keyword arguments for Dask configuration. + Defaults to an empty dictionary.""" @classmethod def enable_dask(cls, dask_kwargs=None):