diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 358e37e..01e500e 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.10.0: + +0.10.0 — 2022-03-28 +------------------- + +Changed +....... + +- Pull request data was not properly displayed: comments weren't included in + the digest that should have been. + +- Pull request comments older than the cutoff date will be included if they are + needed to show the discussion threads of newer comments. The old comments + are shown in gray to help stay focused on recent activity. + +- Parsing of time durations was made stricter, so that "1 month" isn't + mistaken for "1 minute". Fixes `issue 7`_ + +.. _issue 7: https://github.com/nedbat/dinghy/issues/7 + +Removed +....... + +- Oops, it turns out there's no such thing as a repo project for "Projects + (beta)". That thing that wouldn't have worked has been removed. + + 0.9.0 — 2022-03-17 ------------------ diff --git a/scriv.d/20220323_191156_nedbat.rst b/scriv.d/20220323_191156_nedbat.rst deleted file mode 100644 index 8890384..0000000 --- a/scriv.d/20220323_191156_nedbat.rst +++ /dev/null @@ -1,5 +0,0 @@ -Removed -....... - -- Oops, it turns out there's no such thing as a repo project for "Projects - (beta)". That thing that wouldn't have worked has been removed. diff --git a/scriv.d/20220325_080615_nedbat.rst b/scriv.d/20220325_080615_nedbat.rst deleted file mode 100644 index 19ee26b..0000000 --- a/scriv.d/20220325_080615_nedbat.rst +++ /dev/null @@ -1,37 +0,0 @@ -.. A new scriv changelog fragment. -.. -.. Uncomment the header that is right (remove the leading dots). -.. -.. Removed -.. ....... -.. -.. - A bullet item for the Removed category. -.. -.. Added -.. ..... -.. -.. - A bullet item for the Added category. -.. -Changed -....... - -- Parsing of time durations was made stricter, so that "1 month" isn't - mistaken for "1 minute". Fixes `issue 7`_ - -.. _issue 7: https://github.com/nedbat/dinghy/issues/7 - -.. Deprecated -.. .......... -.. -.. - A bullet item for the Deprecated category. -.. -.. Fixed -.. ..... -.. -.. - A bullet item for the Fixed category. -.. -.. Security -.. ........ -.. -.. - A bullet item for the Security category. -.. diff --git a/scriv.d/20220328_190743_nedbat.rst b/scriv.d/20220328_190743_nedbat.rst deleted file mode 100644 index 07a7efe..0000000 --- a/scriv.d/20220328_190743_nedbat.rst +++ /dev/null @@ -1,9 +0,0 @@ -Changed -....... - -- Pull request data was not properly displayed: comments weren't included in - the digest that should have been. - -- Pull request comments older than the cutoff date will be included if they are - needed to show the discussion threads of newer comments. The old comments - are shown in gray to help stay focused on recent activity. diff --git a/src/dinghy/__init__.py b/src/dinghy/__init__.py index b0d950a..5521a9a 100644 --- a/src/dinghy/__init__.py +++ b/src/dinghy/__init__.py @@ -2,4 +2,4 @@ Dinghy daily digest tool. """ -__version__ = "0.9.0" +__version__ = "0.10.0"