Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## Unreleased
## v0.21.0 (2025 Mar 06)

### New features

Expand All @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion arviz/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion arviz/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down