diff --git a/CHANGELOG.md b/CHANGELOG.md index 07098dc07d2ba277348665367bcdb4d5e7854d56..117484393c420f51f87aefff78a2e6abb58b82fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # All notable changes will be documented in this file +## [1.1.3] 2021-07-02 +Version 1.1.3 release of bilby + +### Added +- Added `Categorical` prior (!982)(!990) +- Added a built-in mcmc sampler (`bilby_mcmc`) (!905)(!985) +- Added run statistics to the `dynesty` meta data (!969) +- Added `cdf` method to `PriorDict` classes (!943) + +### Changes +- Removed the autoburnin causing `kombine` to fail the CI tests (!988) +- Sped up the spline interpolation in ROQ (!971) +- Replaced bessel interpolant to scipy function (!976) +- Improved checkpoint stats plot (!977) +- Fixed a typo in the sampler documentation (!986) +- Fixed issue that causes ConditionalDeltaFunction posterior samples not to be saved correctly (!973) +- Solved an issue where injected SNRs were logged incorrectly (!980) +- Made Python 3.6+ a specific requirement (!978) +- Fixed the calibration and time marginalized likelihood (!978) +- Removed a possible error in the distance marginalization (!960) +- Fixed an issue where `check_draw` did not catch `np.nan` values (!965) +- Removed a superfluous line in the docs configuration file (!963) +- Added a warning about class side effects to the `GravtiationalWaveTransient` likelihood classes (!964) +- Allow `ptemcee` initialization with array (!955) +- Removed `Prior.test_valid_for_rescaling` (!956) +- Replaced deprecated numpy aliases builtins (!970) +- Fixed a bug in the algorithm to determine time resolution of ROQ (!967) +- Restructured utils module into several submodules. API remains backwards compatible (!873) +- Changed number of default walks in `dynesty` from `10*self.ndim` to `100` (!961) + ## [1.1.2] 2021-05-05 Version 1.1.2 release of bilby diff --git a/setup.py b/setup.py index 49747e8bf0a8e619840aff5f55e0a623d1de102e..abb0a8cc346f3cfa66c5565c2d834392a8c3dbf5 100644 --- a/setup.py +++ b/setup.py @@ -70,7 +70,7 @@ def readfile(filename): return filecontents -VERSION = '1.1.2' +VERSION = '1.1.3' version_file = write_version_file(VERSION) long_description = get_long_description()