From e9f91111b03eac8dd435592f3031b00c09748422 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 27 Jan 2018 18:15:38 +0000 Subject: [PATCH 1/2] Update changelog for 5.4 --- docs/source/changelog.rst | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 040a75f3e..6dbd11b75 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -20,6 +20,43 @@ We strongly recommend that you upgrade to version 9+ of pip before upgrading ``n Use ``pip install pip --upgrade`` to upgrade pip. Check pip version with ``pip --version``. +.. _release-5.4: + +5.4 +--- + +- Fix creating files and folders after navigating directories in the dashboard + (:ghpull:`3264`). +- Enable printing notebooks in colour, removing the CSS that made everything + black and white (:ghpull:`3212`). +- Limit the completion options displayed in the notebook to 1000, to avoid + performance issues with very long lists (:ghpull:`3195`). +- Added alt-text to the kernel logo image in the notebook UI (:ghpull:`3228`). +- Added a test on Travis CI to flag if symlinks are accidentally introduced + in the future. This should prevent the issue that necessitated + :ref:`release-5.3.1` (:ghpull:`3227`). +- Use lowercase letters for random IDs generated in our Javascript + (:ghpull:`3264`). +- Removed duplicate code setting ``TextCell.notebook`` (:ghpull:`3256`). + +Thanks to the following contributors: + +- Matthias Bussonnier (`Carreau `__) +- Min RK (`minrk `__) +- Nitesh Sawant (`ns23 `__) +- Thomas Kluyver (`takluyver `__) +- Yuvi Panda (`yuvipanda `__) + +See the 5.4 milestone on GitHub for a complete list of +`pull requests `__ involved in this release. + +.. _release-5.3.1: + +5.3.1 +----- + +Replaced a symlink in the repository with a copy, to fix issues installing +on Windows (:ghpull:`3220`). .. _release-5.3.0: From c14b94b037d9dd85f60548ab9833c6727c5912bf Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sun, 28 Jan 2018 17:12:07 +0000 Subject: [PATCH 2/2] Add PR #3271 to changelog --- docs/source/changelog.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 6dbd11b75..5391d056e 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -31,6 +31,7 @@ We strongly recommend that you upgrade to version 9+ of pip before upgrading ``n black and white (:ghpull:`3212`). - Limit the completion options displayed in the notebook to 1000, to avoid performance issues with very long lists (:ghpull:`3195`). +- Accessibility improvements in ``tree.html`` (:ghpull:`3271`). - Added alt-text to the kernel logo image in the notebook UI (:ghpull:`3228`). - Added a test on Travis CI to flag if symlinks are accidentally introduced in the future. This should prevent the issue that necessitated @@ -41,6 +42,7 @@ We strongly recommend that you upgrade to version 9+ of pip before upgrading ``n Thanks to the following contributors: +- Alex Soderman (`asoderman `__) - Matthias Bussonnier (`Carreau `__) - Min RK (`minrk `__) - Nitesh Sawant (`ns23 `__)