From b35c80c005b32b5e7a25ed5c8f523bcb6e75d413 Mon Sep 17 00:00:00 2001
From: Colm Talbot <colm.talbot@ligo.org>
Date: Mon, 15 Aug 2022 14:18:47 +0000
Subject: [PATCH] Version 1.2.0 release

---
 CHANGELOG.md | 33 ++++++++++++++++++++++++++++++++-
 setup.py     |  2 +-
 2 files changed, 33 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 73cdbefb1..edd3ced6a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,38 @@
 # All notable changes will be documented in this file
 
+## [1.2.0] 2022-08-15
+Version 1.2.0 release of Bilby
+
+This is the first release that drops support for `Python<3.8`.
+
+This release involves major refactoring, especially of the sampler implementations.
+
+Additionally, there are a range of improvements to how information is passed
+with multiprocessing.
+
+### Added
+- Time marginalized ROQ likelihood (!1040)
+- Multiple and multi-banded ROQ likelihood (!1093)
+- Gaussian process likelihoods (!1086)
+- `CBCWaveformGenerator` added with CBC specific defaults (!1080)
+
+### Changes
+- Fixes and improvements to multi-processing (!1084, !1043, !1096)
+- Major refactoring of sampler implementations (!1043)
+- Fixes for reading/writing priors (!1103, !1127, !1128)
+- Fixes/updates to exmample scripts (!1050, !1031, !1076, !1081, !1074)
+- Fixes to calibration correction in GW likelihoods (!1114, !1120, !1119)
+
+### Deprecated/removed
+- Require `Python>=3.8`
+- Require `astropy>=5`
+- `bilby.core.utils.conversion.gps_time_to_gmst`
+- `bilby.core.utils.spherical_to_cartesian`
+- `bilby.core.utils.progress`
+- Deepdish IO for `Result`, `Interferometer`, and `InterferometerList`
+
 ## [1.1.5] 2022-01-14
-Version 1.1.5 release of bilby
+Version 1.1.5 release of Bilby
 
 ### Added
 - Option to enforce that a GW signal fits into the segment duration (!1041)
diff --git a/setup.py b/setup.py
index f937ab2bc..57da57e2c 100644
--- a/setup.py
+++ b/setup.py
@@ -73,7 +73,7 @@ def readfile(filename):
     return filecontents
 
 
-VERSION = '1.1.5'
+VERSION = '1.2.0'
 version_file = write_version_file(VERSION)
 long_description = get_long_description()
 
-- 
GitLab