diff --git a/CHANGELOG.md b/CHANGELOG.md index 73a09234a003811e3f6b1da504601fbc1c1c9863..eb1eaf6d3efe65a052abfe7e7d9171c9da95d814 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # All notable changes will be documented in this file +## [1.0.1] 2020-08-29 + +Version 1.0.1 release of bilby + +### Added +- Added an rcparams configuration for plotting (!832) +- Added `chi_1` and `chi_2` parameters to default latex label dictionary (!841) +- Allow output merged result file to be gzip or saved as a HDF5 file (!802) + +### Changes +- Fixed first value in EOS cumulative integral(!860) +- Fixed saving the number of likelihood evaluations (!848) +- Likelihood condition is now strictly increasing (!846) +- Fixed a minor issue with conditional priors that could cause unexpected behaviour in edge cases (!838) +- Fixed `__repr__` method in the `FromFile` prior (!836) +- Fixed an issue that caused problems for some users when plotting with a latex backend (!816) +- Fixed bug that occured when min/max of interpolated priors was changed (!815) +- Fixed time domain waveform epoch (!736) +- Fixed time keeping in multinest (!830) +- Now checks if marginalised priors were defined before marginalising (!829) +- Fixed an issue with multivariate Gaussian prior (!822) +- Various minor code improvements (!836)(!839) +- Various minor bug fixes and improvements to the documentation (!820)(!823)(!837) +- Various testing improvements (!833)(!847)(!855)(!852) + ## [1.0.0] 2020-07-06 Version 1.0 release of bilby diff --git a/setup.py b/setup.py index 0203658d6986ca210bf73b57b815e100aca95613..111309401f33398b50adeee4a2c3fc090eb53c3d 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ def readfile(filename): return filecontents -VERSION = '1.0.0' +VERSION = '1.0.1' version_file = write_version_file(VERSION) long_description = get_long_description()