From 9e1f47800b7aa6a75cd04b249eefd797596be696 Mon Sep 17 00:00:00 2001 From: danielballan Date: Sat, 19 May 2018 19:49:30 -0400 Subject: [PATCH] DOC: Release notes for v0.11.1 --- doc/source/tutorial.rst | 1 + doc/source/whats_new.rst | 1 + doc/source/whats_new/v0.11.1.txt | 12 ++++++++++++ 3 files changed, 14 insertions(+) create mode 100644 doc/source/whats_new/v0.11.1.txt diff --git a/doc/source/tutorial.rst b/doc/source/tutorial.rst index 4782535fe..2b60faa34 100644 --- a/doc/source/tutorial.rst +++ b/doc/source/tutorial.rst @@ -230,6 +230,7 @@ unbounded number of results. To avoid slowness, the results are loaded "lazily," only as needed. Here's an example of what works and what doesn't. .. ipython:: python + :okexcept: headers = db(plan_name='scan') headers diff --git a/doc/source/whats_new.rst b/doc/source/whats_new.rst index c8dd4d30f..0b77dd79b 100644 --- a/doc/source/whats_new.rst +++ b/doc/source/whats_new.rst @@ -7,6 +7,7 @@ A catalog of new features, improvements, and bug-fixes in each release. Follow links to the relevant GitHub issue or pull request for specific code changes and any related discussion. +.. include:: whats_new/v0.11.1.txt .. include:: whats_new/v0.11.0.txt .. include:: whats_new/v0.10.0.txt .. include:: whats_new/v0.9.4.txt diff --git a/doc/source/whats_new/v0.11.1.txt b/doc/source/whats_new/v0.11.1.txt new file mode 100644 index 000000000..af6382d6c --- /dev/null +++ b/doc/source/whats_new/v0.11.1.txt @@ -0,0 +1,12 @@ +.. currentmodule:: databroker + +v0.11.1 (2018-05-19) +-------------------- + +Bug Fixes ++++++++++ + +* Fixed limitation whereby sqlite backend could not be used by multiple + threads. One important problem with limitation is that it broke the ability + to insert documents generated by "monitoring" in bluesky. +* Removed accidental call to ``print``.