Skip to content

Commit df95107

Browse files
committed
changelog: update for v0.6.0
1 parent 2266d69 commit df95107

File tree

1 file changed

+22
-15
lines changed

1 file changed

+22
-15
lines changed

CHANGELOG.md

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.0] - 2022-08-24
11+
1012
### Added
1113

12-
- Add a warning in `Model.verify_model` when `Model.log_prior` returns an array that has `float16` precision.
13-
- Add more functionality for configuring live point fields and defaults.
14-
- Record iteration at which live points are drawn in `it` field of live points.
15-
- Add `nessai.config` for storing package wide defaults.
16-
- Add `nessai.utils.testing` submodule which contains functions to use during testing.
17-
- Add `nessai.livepoint.unstructured_view` and `nessai.model.Model.unstructured_view` for constructing unstructured views of live points.
18-
- Add `nessai.plot.corner_plot` as an alternative to `plot_live_points` that uses `corner` instead of `seaborn`
19-
- Add `filehandler_kwargs` to `nessai.utils.logging.setup_logger` which allows the user to configure the `FileHandler` in the logger.
14+
- Add a warning in `Model.verify_model` when `Model.log_prior` returns an array that has `float16` precision. ([#175](https://github.com/mj-will/nessai/pull/175))
15+
- Add more functionality for configuring live point fields and defaults. ([#170](https://github.com/mj-will/nessai/pull/170))
16+
- Record iteration at which live points are drawn in `it` field of live points. ([#170](https://github.com/mj-will/nessai/pull/170))
17+
- Add `nessai.config` for storing package wide defaults. ([#170](https://github.com/mj-will/nessai/pull/170))
18+
- Add `nessai.utils.testing` submodule which contains functions to use during testing. ([#170](https://github.com/mj-will/nessai/pull/170))
19+
- Add `nessai.livepoint.unstructured_view` and `nessai.model.Model.unstructured_view` for constructing unstructured views of live points. ([#178](https://github.com/mj-will/nessai/pull/178))
20+
- Add `nessai.plot.corner_plot` as an alternative to `plot_live_points` that uses `corner` instead of `seaborn`. ([#189](https://github.com/mj-will/nessai/pull/189))
21+
- Add new examples. ([#195](https://github.com/mj-will/nessai/pull/195), [#198](https://github.com/mj-will/nessai/pull/198))
22+
- Add `filehandler_kwargs` to `nessai.utils.logging.setup_logger` which allows the user to configure the `FileHandler` in the logger. ([#204](https://github.com/mj-will/nessai/pull/204))
2023

2124
### Changed
2225

23-
- Change default values for log-likelihood and log-prior in empty live points to be `np.nan` instead of zero.
24-
- `nessai.livepoint.get_dtype` now returns an instance of `numpy.dtype`
25-
- Style for plots is no longer set globally and can be disabled completely.
26+
- Change default values for log-likelihood and log-prior in empty live points to be `np.nan` instead of zero. ([#170](https://github.com/mj-will/nessai/pull/170))
27+
- `nessai.livepoint.get_dtype` now returns an instance of `numpy.dtype`. ([#170](https://github.com/mj-will/nessai/pull/170))
28+
- Style for plots is no longer set globally and can be disabled completely. ([#194](https://github.com/mj-will/nessai/pull/194))
29+
- Update examples. ([#190](https://github.com/mj-will/nessai/pull/190))
30+
- Changed behaviour of `from nessai import *` to no longer imports any modules. ([#201](https://github.com/mj-will/nessai/pull/201))
2631

2732
### Fixed
2833

29-
- Fixed a bug in `FlowProposal.populate` which occurred when the pool of samples was not empty (closes [#176](https://github.com/mj-will/nessai/issues/176))
34+
- Fixed a bug in `FlowProposal.populate` which occurred when the pool of samples was not empty (closes [#176](https://github.com/mj-will/nessai/issues/176)) ([#177](https://github.com/mj-will/nessai/pull/177))
35+
- Fixed a bug in `nessai.model.Model.new_point` where the incorrect number of points were returned. ([#200](https://github.com/mj-will/nessai/pull/200))
3036

3137
### Removed
3238

33-
- Drop support for Python 3.6
34-
- Remove a temporary fix for [#46](https://github.com/mj-will/nessai/issues/46) that was introduced in [#47](https://github.com/mj-will/nessai/pull/47)
39+
- Drop support for Python 3.6. ([#188](https://github.com/mj-will/nessai/pull/188))
40+
- Remove a temporary fix for [#46](https://github.com/mj-will/nessai/issues/46) that was introduced in [#47](https://github.com/mj-will/nessai/pull/47). ([#202](https://github.com/mj-will/nessai/pull/202))
3541

3642

3743
## [0.5.1] - 2022-06-20
@@ -379,7 +385,8 @@ First public release.
379385
- Original `GWFlowProposal` method renamed to `LegacyGWFlowProposal`. Will be removed in the next release.
380386

381387

382-
[Unreleased]: https://github.com/mj-will/nessai/compare/v0.5.1...HEAD
388+
[Unreleased]: https://github.com/mj-will/nessai/compare/v0.6.0...HEAD
389+
[0.6.0]: https://github.com/mj-will/nessai/compare/v0.5.1...v0.6.0
383390
[0.5.1]: https://github.com/mj-will/nessai/compare/v0.5.0...v0.5.1
384391
[0.5.0]: https://github.com/mj-will/nessai/compare/v0.4.0...v0.5.0
385392
[0.4.0]: https://github.com/mj-will/nessai/compare/v0.3.3...v0.4.0

0 commit comments

Comments
 (0)