diff --git a/docs/release-notes.txt b/docs/release-notes.txt index e3a89fc0778..a24a57ad468 100644 --- a/docs/release-notes.txt +++ b/docs/release-notes.txt @@ -8,6 +8,20 @@ Version 0.17 ************** +Version 0.17.11 +=============== + +**Release Date:** March 14, 2022 + +**New Features** + +- Add ``on_trial_startup()`` and ``on_trial_shutdown()`` methods to + :class:`~determined.pytorch.PyTorchCallback`. Whenever ``on_trial_startup()`` is called, + ``on_trial_shutdown()`` is always called before the trial container shuts down. These callbacks + make it possible to do reliable resource management in a training container, such as if you wish + to start a background thread or process for data loading and shut it down before the process + exits. + Version 0.17.10 =============== diff --git a/docs/release-notes/3643-callbacks.txt b/docs/release-notes/3643-callbacks.txt deleted file mode 100644 index 7df5da63a07..00000000000 --- a/docs/release-notes/3643-callbacks.txt +++ /dev/null @@ -1,10 +0,0 @@ -:orphan: - -**New Features** - -- Add ``on_trial_startup()`` and ``on_trial_shutdown()`` methods to - :class:`~determined.pytorch.PyTorchCallback`. Whenever ``on_trial_startup()`` is called, - ``on_trial_shutdown()`` is always called before the trial container shuts down. These callbacks - make it possible to do reliable resource management in a training container, such as if you wish - to start a background thread or process for data loading and shut it down before the process - exits.