Skip to content

Commit

Permalink
Merge pull request #299 from mj-will/prepare-v0.8.1
Browse files Browse the repository at this point in the history
Prepare v0.8.1
  • Loading branch information
mj-will authored Apr 14, 2023
2 parents 42d4cba + 6fd0a7d commit b67e0ca
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.1]

### Fixed

- Fix incorrect sign in delta phase reparameterisation ([#292](https://github.com/mj-will/nessai/pull/292))
- Remove maximum scipy version ([#295](https://github.com/mj-will/nessai/pull/295))
- Specify three quantiles in default corner kwargs as required by corner 2.2.2 ([#298](https://github.com/mj-will/nessai/pull/298))

## [0.8.0]

### Added
Expand Down Expand Up @@ -489,7 +497,8 @@ First public release.

- Original `GWFlowProposal` method renamed to `LegacyGWFlowProposal`. Will be removed in the next release.

[Unreleased]: https://github.com/mj-will/nessai/compare/v0.8.0...HEAD
[Unreleased]: https://github.com/mj-will/nessai/compare/v0.8.1...HEAD
[0.8.1]: https://github.com/mj-will/nessai/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/mj-will/nessai/compare/v0.7.1...v0.8.0
[0.7.1]: https://github.com/mj-will/nessai/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/mj-will/nessai/compare/v0.6.0...v0.7.0
Expand Down
2 changes: 1 addition & 1 deletion nessai/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ def corner_plot(
smooth=0.9,
color=config.plotting.base_colour,
truth_color=config.plotting.highlight_colour,
quantiles=[0.16, 0.84],
quantiles=[0.16, 0.5, 0.84],
levels=(1 - np.exp(-0.5), 1 - np.exp(-2), 1 - np.exp(-9 / 2.0)),
plot_density=True,
plot_datapoints=True,
Expand Down

0 comments on commit b67e0ca

Please sign in to comment.