Skip to content

Commit 9dd5a0b

Browse files
authored
Prepare release (#2434)
* prepare release * fix long line
1 parent a3b9286 commit 9dd5a0b

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## Unreleased
3+
## v0.21.0 (2025 Mar 06)
44

55
### New features
66

@@ -13,6 +13,10 @@
1313

1414
### Documentation
1515
- Add example of ECDF comparison plot to gallery ([2178](https://github.com/arviz-devs/arviz/pull/2178))
16+
- Change Twitter to X, including the icon ([2418](https://github.com/arviz-devs/arviz/pull/2418))
17+
- Update Bokeh link in Installation.rst ([2425](https://github.com/arviz-devs/arviz/pull/2425))
18+
- Add missing periods to the ArviZ community page ([2426](https://github.com/arviz-devs/arviz/pull/2426))
19+
- Fix missing docstring ([2430](https://github.com/arviz-devs/arviz/pull/2430))
1620

1721
## v0.20.0 (2024 Sep 28)
1822

arviz/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pylint: disable=wildcard-import,invalid-name,wrong-import-position
22
"""ArviZ is a library for exploratory analysis of Bayesian models."""
3-
__version__ = "0.20.0"
3+
__version__ = "0.21.0"
44

55
import logging
66
import os

arviz/utils.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,8 @@ class Dask:
735735
dask_flag = False
736736
"""bool: Enables Dask parallelization when set to True. Defaults to False."""
737737
dask_kwargs = None
738-
"""dict: Additional keyword arguments for Dask configuration. Defaults to an empty dictionary."""
738+
"""dict: Additional keyword arguments for Dask configuration.
739+
Defaults to an empty dictionary."""
739740

740741
@classmethod
741742
def enable_dask(cls, dask_kwargs=None):

0 commit comments

Comments
 (0)