diff --git a/HISTORY.rst b/HISTORY.rst
index 446a10b9ef3f9852280d079068fc5e0fbc004f59..04ddae2d388e9876467a7a5304afb6f4ccedba93 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -9,13 +9,30 @@ History
 0.11.0.dev0
 ---------------------
 
-    
+* Implement staging Galaxy metadata input files in the client.
+  39de377_
+* Fix 'amqp_ack_republish_time' in sample (thanks to `@dannon`_).
+  `Pull Request 185`_
+* Updated amqp_url in job_conf_sample_mq_rsync.xml (thanks to `@AndreasSko`_).
+  `Pull Request 184`_
+* Use wildcard char for pulsar version (thanks to `@VJalili`_).
+  `Pull Request 181`_
+* Refactor toward more structured inputs. f477bc4_
+* Refactor toward passing objectstore identifying information around.
+  `Pull Request 180`_
+* Rework imports for new Galaxy library structure. da086c9_
+* Revert empty input testing, it really probably should cause a failure
+  to transfer a non-existent file.
+  8bd5511_
+* Better client mapper documentation. b6278b4_
 
 ---------------------
 0.10.0 (2019-05-06)
 ---------------------
 
-    
+* Implement support for Kubernetes two container pod jobs - staging and
+  tool execution as separate containers in the same job's pod.
+  `Pull Request 176`_, `Pull Request 178`_
 
 ---------------------
 0.9.1 (2019-05-01)
@@ -219,6 +236,17 @@ History
 
 
 .. github_links
+.. _Pull Request 185: https://github.com/galaxyproject/pulsar/pull/185
+.. _Pull Request 184: https://github.com/galaxyproject/pulsar/pull/184
+.. _Pull Request 181: https://github.com/galaxyproject/pulsar/pull/181
+.. _Pull Request 180: https://github.com/galaxyproject/pulsar/pull/180
+.. _da086c9: https://github.com/galaxyproject/pulsar/commit/da086c9
+.. _8bd5511: https://github.com/galaxyproject/pulsar/commit/8bd5511
+.. _b6278b4: https://github.com/galaxyproject/pulsar/commit/b6278b4
+.. _39de377: https://github.com/galaxyproject/pulsar/commit/39de377
+.. _f477bc4: https://github.com/galaxyproject/pulsar/commit/f477bc4
+.. _Pull Request 178: https://github.com/galaxyproject/pulsar/pull/178
+.. _Pull Request 176: https://github.com/galaxyproject/pulsar/pull/176
 .. _Pull Request 173: https://github.com/galaxyproject/pulsar/pull/173
 .. _Pull Request 174: https://github.com/galaxyproject/pulsar/pull/174
 .. _Pull Request 175: https://github.com/galaxyproject/pulsar/pull/175
@@ -286,3 +314,6 @@ History
 .. _3cc7f74: https://github.com/galaxyproject/pulsar/commit/3cc7f74
 .. _9d43ae0: https://github.com/galaxyproject/pulsar/commit/9d43ae0
 .. _Pull Request 62: https://github.com/galaxyproject/pulsar/pull/62
+.. _@dannon: https://github.com/dannon
+.. _@AndreasSko: https://github.com/AndreasSko
+.. _@VJalili: https://github.com/VJalili
diff --git a/tools/bootstrap_history.py b/tools/bootstrap_history.py
index 7d8821afc00f8031e71dd1ef9654e65d51885e1e..a05eb59f3e6603d06dae7e1a3f14c7fdd76538e9 100644
--- a/tools/bootstrap_history.py
+++ b/tools/bootstrap_history.py
@@ -21,6 +21,7 @@ PROJECT_OWNER = project.PROJECT_OWNER
 PROJECT_NAME = project.PROJECT_NAME
 PROJECT_URL = "https://github.com/%s/%s" % (PROJECT_OWNER, PROJECT_NAME)
 PROJECT_API = "https://api.github.com/repos/%s/%s/" % (PROJECT_OWNER, PROJECT_NAME)
+AUTHORS_SKIP_CREDIT = ["jmchilton"]
 
 
 def main(argv):
@@ -29,7 +30,7 @@ def main(argv):
 
     def extend(from_str, line):
         from_str += "\n"
-        return history.replace(from_str, from_str + line + "\n" )
+        return history.replace(from_str, from_str + line + "\n")
 
     ident = argv[1]
 
@@ -47,6 +48,10 @@ def main(argv):
         api_url = urlparse.urljoin(PROJECT_API, "pulls/%s" % pull_request)
         req = requests.get(api_url).json()
         message = req["title"]
+        login = req["user"]["login"]
+        if login not in AUTHORS_SKIP_CREDIT:
+            message = message.rstrip(".")
+            message += " (thanks to `@%s`_)." % req["user"]["login"]
     elif requests is not None and ident.startswith("issue"):
         issue = ident[len("issue"):]
         api_url = urlparse.urljoin(PROJECT_API, "issues/%s" % issue)