Skip to content

Commit

Permalink
Bump version to 0.11.2 (#1577)
Browse files Browse the repository at this point in the history
* bump version

* pylint temporal fix

* fix tests
  • Loading branch information
OriolAbril authored Feb 21, 2021
1 parent 3d788cc commit 29b35ce
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ disable=missing-docstring,
ungrouped-imports,
not-an-iterable,
no-member,
use-a-generator,
consider-using-generator,
#TODO: Remove this once todos are done
fixme

Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## v0.x.x Unreleased
### New features

### Maintenance and fixes

### Deprecation

### Documentation

## v0.11.2 (2021 Feb 21)
### New features
* Added `to_zarr` and `from_zarr` methods to InferenceData ([1518](https://github.com/arviz-devs/arviz/pull/1518))
* Added confidence interval band to auto-correlation plot ([1535](https://github.com/arviz-devs/arviz/pull/1535))

Expand All @@ -12,7 +21,6 @@
* Added significant digits formatter to round rope values ([1569](https://github.com/arviz-devs/arviz/pull/1569))
* Updated `from_cmdstan`. csv reader, dtype problem fixed and dtype kwarg added for manual dtype casting ([1565](https://github.com/arviz-devs/arviz/pull/1565))


### Deprecation
* Removed Geweke diagnostic ([1545](https://github.com/arviz-devs/arviz/pull/1545))
* Removed credible_interval and include_circ arguments ([1548](https://github.com/arviz-devs/arviz/pull/1548))
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.11.1"
__version__ = "0.11.2"

import logging
import os
Expand Down
6 changes: 3 additions & 3 deletions arviz/tests/base_tests/test_plots_matplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,12 +501,12 @@ def test_plot_kde_inference_data(models):
"divergences": True,
"coords": {"theta_dim_0": [0, 1]},
"scatter_kwargs": {"marker": "x"},
"divergences_kwargs": {"marker": "*", "c": "C"},
"divergences_kwargs": {"marker": "*", "c": "C0"},
},
{
"divergences": True,
"scatter_kwargs": {"marker": "x"},
"divergences_kwargs": {"marker": "*", "c": "C"},
"divergences_kwargs": {"marker": "*", "c": "C0"},
"var_names": ["theta", "mu"],
},
{"kind": "kde", "var_names": ["theta"]},
Expand All @@ -523,7 +523,7 @@ def test_plot_kde_inference_data(models):
{
"point_estimate": "mean",
"reference_values": {"mu": 0, "tau": 0},
"reference_values_kwargs": {"c": "C", "marker": "*"},
"reference_values_kwargs": {"c": "C0", "marker": "*"},
},
],
)
Expand Down

0 comments on commit 29b35ce

Please sign in to comment.