diff --git a/CHANGELOG b/CHANGELOG
index 877a97d11dc72e2436459e30e1620a025e15bb71..f35f7830d95cffd0795ee64bed261a82e745f2e1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,19 @@
+0.7.3 Sep 22, 2015:
+Client:
+  o Bugfix: refactor code loss. Closes #7412.
+  o Bugfix: Set active secret before saving local file.
+  o Split http_target into 4 modules, separating those responsibilities.
+  o Refactor details of making an HTTP request body and headers out of the
+    send/fetch logic. This also makes it easier to enable batching.
+
+Server:
+  o Fix a bug where BadRequest could be raised after everything was persisted.
+
+Common:
+  o Refactor couch.py to separate persistence from logic while saving uploaded
+    documents. Also simplify logic while checking for conflicts.
+
+
 0.7.2 Aug 26, 2015:
 Client:
   o Remove MAC from secrets file. Closes #6980.
diff --git a/client/changes/bug-7412_sync-status-broken b/client/changes/bug-7412_sync-status-broken
deleted file mode 100644
index b6800bc59e4cde98c6c4275fe19f1de6e193788b..0000000000000000000000000000000000000000
--- a/client/changes/bug-7412_sync-status-broken
+++ /dev/null
@@ -1 +0,0 @@
-o Fix refactor code loss. Closes #7412.
diff --git a/client/changes/bug_set-active-secret b/client/changes/bug_set-active-secret
deleted file mode 100644
index 8c234b259c1ea56d58539da911fd7cde260bcb0b..0000000000000000000000000000000000000000
--- a/client/changes/bug_set-active-secret
+++ /dev/null
@@ -1 +0,0 @@
-o [bug] Set active secret before saving local file.
diff --git a/client/changes/refactor_improve_http_target b/client/changes/refactor_improve_http_target
deleted file mode 100644
index a8fe5f60579d27fcfd5a321cbea39b7e22db21e2..0000000000000000000000000000000000000000
--- a/client/changes/refactor_improve_http_target
+++ /dev/null
@@ -1,3 +0,0 @@
-  o Split http_target into 4 modules, separating those responsibilities.
-  o Refactor details of making an HTTP request body and headers out of the
-  send/fetch logic. This also makes it easier to enable batching.
diff --git a/common/changes/refactor_couch b/common/changes/refactor_couch
deleted file mode 100644
index 2f36b97f24ebe63bebe8ac8844017726cfac1ad9..0000000000000000000000000000000000000000
--- a/common/changes/refactor_couch
+++ /dev/null
@@ -1,2 +0,0 @@
-  o Refactor couch.py to separate persistence from logic while saving uploaded
-  documents. Also simplify logic while checking for conflicts.
diff --git a/server/changes/bug_badrequest b/server/changes/bug_badrequest
deleted file mode 100644
index 74901476afe258043fc34a12eaf13fc764357092..0000000000000000000000000000000000000000
--- a/server/changes/bug_badrequest
+++ /dev/null
@@ -1 +0,0 @@
-  o Fix a bug where BadRequest could be raised after everything was persisted