Skip to content

Commit 8676e40

Browse files
authored
Bump minor version to "0.8.0" (#1200)
1 parent 7eb8806 commit 8676e40

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## v0.x.x Unreleased
44

5+
### New features
6+
7+
### Maintenance and fixes
8+
9+
### Deprecation
10+
11+
### Documentation
12+
13+
## v0.8.0 (2020 May 23)
14+
515
### New features
616
* Stats and plotting functions that provide `var_names` arg can now filter parameters based on partial naming (`filter="like"`) or regular expressions (`filter="regex"`) (see [#1154](https://github.com/arviz-devs/arviz/pull/1154)).
717
* Add `true_values` argument for `plot_pair`. It allows for a scatter plot showing the true values of the variables #1140
@@ -16,7 +26,6 @@
1626
* New grayscale style. This also add two new cmaps `cet_grey_r` and `cet_grey_r`. These are perceptually uniform gray scale cmaps from colorcet (linear_grey_10_95_c0) (#1164)
1727
* Add warmup groups to InferenceData objects, initial support for PyStan (#1126) and PyMC3 (#1171)
1828
* `hdi_prob` will not plot hdi if argument `hide` is passed. Previously `credible_interval` would omit HPD if `None` was passed (#1176)
19-
* `stats.hdp` is pending deprecation. Replaced by `stats.hdi`
2029
* Add `stats.ic_pointwise` rcParam (#1173)
2130
* Add `var_name` argument to information criterion calculation: `compare`,
2231
`loo` and `waic` (#1173)

arviz/__init__.py

Lines changed: 1 addition & 1 deletion
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.7.0"
3+
__version__ = "0.8.0"
44

55
import os
66
import logging

0 commit comments

Comments
 (0)