diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0e8f307..e9d1c28 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -22,6 +22,19 @@ See the fragment files in the `scriv.d directory`_. .. scriv-insert-here +.. _changelog-1.3.1: + +1.3.1 — 2023-09-17 +------------------ + +Fixed +..... + +- When using a URL on the command line, the ``--since`` option was ignored. + This is now fixed, closing `issue 35`_. + +.. _issue 35: https://github.com/nedbat/dinghy/issues/35 + .. _changelog-1.3.0: 1.3.0 — 2023-07-31 diff --git a/scriv.d/20230917_130723_nedbat.rst b/scriv.d/20230917_130723_nedbat.rst deleted file mode 100644 index 5259a51..0000000 --- a/scriv.d/20230917_130723_nedbat.rst +++ /dev/null @@ -1,7 +0,0 @@ -Fixed -..... - -- When using a URL on the command line, the ``--since`` option was ignored. - This is now fixed, closing `issue 35`_. - -.. _issue 35: https://github.com/nedbat/dinghy/issues/35 diff --git a/src/dinghy/__init__.py b/src/dinghy/__init__.py index 923510a..1986220 100644 --- a/src/dinghy/__init__.py +++ b/src/dinghy/__init__.py @@ -2,4 +2,4 @@ Dinghy daily digest tool. """ -__version__ = "1.3.0" +__version__ = "1.3.1"