From 19a60b325d78277e71544ece3ec50d34d7f4f824 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 25 Oct 2022 12:31:29 -0400 Subject: [PATCH] docs: prep for 0.14.0 --- CHANGELOG.rst | 27 ++++++++++++++++++++++++ scriv.d/20221008_160008_nedbat.rst | 5 ----- scriv.d/20221014_162320_nedbat.rst | 4 ---- scriv.d/20221025_115913_nedbat_bug23.rst | 7 ------ scriv.d/20221025_122731_nedbat.rst | 5 ----- src/dinghy/__init__.py | 2 +- 6 files changed, 28 insertions(+), 22 deletions(-) delete mode 100644 scriv.d/20221008_160008_nedbat.rst delete mode 100644 scriv.d/20221014_162320_nedbat.rst delete mode 100644 scriv.d/20221025_115913_nedbat_bug23.rst delete mode 100644 scriv.d/20221025_122731_nedbat.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 55f7e2c..460c6e0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -22,6 +22,33 @@ See the fragment files in the `scriv.d directory`_. .. scriv-insert-here +.. _changelog-0.14.0: + +0.14.0 — 2022-10-25 +------------------- + +Added +..... + +- Now a CLI command is registered so you can use ``dinghy`` as a command + instead of ``python -m dinghy`` (though that still works). + +- You can now specify ``since: forever`` to include all activity regardless of + when it happened. + +Changed +....... + +- Search results now always show the repo containing the item. + +Fixed +..... + +- Comments by deleted GitHub users would cause a crash. This is now fixed + (`issue 23`_). + +.. _issue 23: https://github.com/nedbat/dinghy/issues/23 + .. _changelog-0.13.4: 0.13.4 — 2022-10-06 diff --git a/scriv.d/20221008_160008_nedbat.rst b/scriv.d/20221008_160008_nedbat.rst deleted file mode 100644 index 1a1dfae..0000000 --- a/scriv.d/20221008_160008_nedbat.rst +++ /dev/null @@ -1,5 +0,0 @@ -Added -..... - -- Now a CLI command is registered so you can use ``dinghy`` as a command - instead of ``python -m dinghy`` (though that still works). diff --git a/scriv.d/20221014_162320_nedbat.rst b/scriv.d/20221014_162320_nedbat.rst deleted file mode 100644 index ef5bfd2..0000000 --- a/scriv.d/20221014_162320_nedbat.rst +++ /dev/null @@ -1,4 +0,0 @@ -Changed -....... - -- Search results now always show the repo containing the item. diff --git a/scriv.d/20221025_115913_nedbat_bug23.rst b/scriv.d/20221025_115913_nedbat_bug23.rst deleted file mode 100644 index 1d1ea8e..0000000 --- a/scriv.d/20221025_115913_nedbat_bug23.rst +++ /dev/null @@ -1,7 +0,0 @@ -Fixed -..... - -- Comments by deleted GitHub users would cause a crash. This is now fixed - (`issue 23`_). - -.. _issue 23: https://github.com/nedbat/dinghy/issues/23 diff --git a/scriv.d/20221025_122731_nedbat.rst b/scriv.d/20221025_122731_nedbat.rst deleted file mode 100644 index ea057a8..0000000 --- a/scriv.d/20221025_122731_nedbat.rst +++ /dev/null @@ -1,5 +0,0 @@ -Added -..... - -- You can now specify ``since: forever`` to include all activity regardless of - when it happened. diff --git a/src/dinghy/__init__.py b/src/dinghy/__init__.py index 55e81a2..2d5ceff 100644 --- a/src/dinghy/__init__.py +++ b/src/dinghy/__init__.py @@ -2,4 +2,4 @@ Dinghy daily digest tool. """ -__version__ = "0.13.4" +__version__ = "0.14.0"