From 7526ef82545c60a698fc6577055a462dc28183c7 Mon Sep 17 00:00:00 2001 From: Zachary Lentz Date: Fri, 19 Apr 2024 10:11:36 -0700 Subject: [PATCH 1/3] DOC: remove forgotten-to-remove pre-rel, run release notes script. --- docs/source/releases.rst | 15 ++++++++++++ .../379-enh_limit_devices.rst | 22 ----------------- .../381-maint_ipython_history.rst | 24 ------------------- 3 files changed, 15 insertions(+), 46 deletions(-) delete mode 100644 docs/source/upcoming_release_notes/379-enh_limit_devices.rst delete mode 100644 docs/source/upcoming_release_notes/381-maint_ipython_history.rst diff --git a/docs/source/releases.rst b/docs/source/releases.rst index e14afe48..0c29c982 100644 --- a/docs/source/releases.rst +++ b/docs/source/releases.rst @@ -2,6 +2,21 @@ Release History ############### +v1.20.0 (2024-04-19) +==================== + +Features +-------- +- Allow per-session separate ipython histories via command-line argument. + Set this to a local operator console hard drive if available, + otherwise use the ipython default. + +Contributors +------------ +- zllentz + + + v1.19.0 (2024-04-15) ==================== diff --git a/docs/source/upcoming_release_notes/379-enh_limit_devices.rst b/docs/source/upcoming_release_notes/379-enh_limit_devices.rst deleted file mode 100644 index a0902bb6..00000000 --- a/docs/source/upcoming_release_notes/379-enh_limit_devices.rst +++ /dev/null @@ -1,22 +0,0 @@ -379 enh_limit_devices -##################### - -API Changes ------------ -- N/A - -Features --------- -- Adds load_level conf.yaml key for choosing the method used to gather happi devices - -Bugfixes --------- -- N/A - -Maintenance ------------ -- N/A - -Contributors ------------- -- tangkong diff --git a/docs/source/upcoming_release_notes/381-maint_ipython_history.rst b/docs/source/upcoming_release_notes/381-maint_ipython_history.rst deleted file mode 100644 index 27507f7d..00000000 --- a/docs/source/upcoming_release_notes/381-maint_ipython_history.rst +++ /dev/null @@ -1,24 +0,0 @@ -381 maint_ipython_history -######################### - -API Changes ------------ -- N/A - -Features --------- -- Allow per-session separate ipython histories via command-line argument. - Set this to a local operator console hard drive if available, - otherwise use the ipython default. - -Bugfixes --------- -- N/A - -Maintenance ------------ -- N/A - -Contributors ------------- -- zllentz From 2bff37a83eef352bfb398dca4272d98bb3d42d85 Mon Sep 17 00:00:00 2001 From: Zachary Lentz Date: Fri, 19 Apr 2024 10:13:52 -0700 Subject: [PATCH 2/3] DOC: make the release notes better --- docs/source/releases.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/source/releases.rst b/docs/source/releases.rst index 0c29c982..8692b547 100644 --- a/docs/source/releases.rst +++ b/docs/source/releases.rst @@ -7,9 +7,11 @@ v1.20.0 (2024-04-19) Features -------- -- Allow per-session separate ipython histories via command-line argument. - Set this to a local operator console hard drive if available, - otherwise use the ipython default. +- Allow per-session separate ipython histories via ``-hist-file`` + command-line argument. If omitted, default ipython behavior is used. + When ``--hist-file`` is included with no argument, the history file + will be written a local operator console hard drive, if available. + An argument can be provided to use any file as the history.sqlite file. Contributors ------------ From 33b3eb68149ad1e9969224c84fd0d609a5a474c7 Mon Sep 17 00:00:00 2001 From: Zachary Lentz Date: Fri, 19 Apr 2024 10:16:30 -0700 Subject: [PATCH 3/3] DOC: typo --- docs/source/releases.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/releases.rst b/docs/source/releases.rst index 8692b547..35884eb5 100644 --- a/docs/source/releases.rst +++ b/docs/source/releases.rst @@ -7,7 +7,7 @@ v1.20.0 (2024-04-19) Features -------- -- Allow per-session separate ipython histories via ``-hist-file`` +- Allow per-session separate ipython histories via ``--hist-file`` command-line argument. If omitted, default ipython behavior is used. When ``--hist-file`` is included with no argument, the history file will be written a local operator console hard drive, if available.