diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 946bba5..97cd183 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -21,6 +21,43 @@ See the fragment files in the `changelog.d directory`_. .. scriv-insert-here +.. _changelog-1.4.0: + +1.4.0 — 2023-10-12 +------------------ + +Added +..... + +- Literals can be extracted from .cabal files. Thanks `Javier Sagredo `_. + +- Use the git config ``scriv.user_nick`` for the user nick part + of the fragment file. Thanks to `Ronny Pfannschmidt `_, + fixing `issue 103`_. + +- Settings can now be prefixed with ``command:`` to execute the rest of the + setting as a shell command. The output of the command will be used as the + value of the setting. + +Fixed +..... + +- If there are no changelog fragments, ``scriv collect`` now exits with status + code of 2, fixing `issue 110`_. + +- Changelogs with non-version headings now produce an understandable error + message from ``scriv collect``, thanks to `James Gerity `_, fixing + `issue 100`_. + +.. _pull 91: https://github.com/nedbat/scriv/pull/91 +.. _issue 100: https://github.com/nedbat/scriv/issues/100 +.. _pull 101: https://github.com/nedbat/scriv/pull/101 +.. _issue 103: https://github.com/nedbat/scriv/pull/103 +.. _pull 106: https://github.com/nedbat/scriv/pull/106 +.. _issue 110: https://github.com/nedbat/scriv/issues/110 + + .. _changelog-1.3.1: 1.3.1 — 2023-04-16 diff --git a/changelog.d/20230430_092634_nedbat.rst b/changelog.d/20230430_092634_nedbat.rst deleted file mode 100644 index 8ef39b2..0000000 --- a/changelog.d/20230430_092634_nedbat.rst +++ /dev/null @@ -1,7 +0,0 @@ -Added -..... - -- Literals can be extracted from .cabal files. Thanks `Javier Sagredo `_. - -.. _pull 91: https://github.com/nedbat/scriv/pull/91 diff --git a/changelog.d/20230718_185443_nedbat_add_101_test.rst b/changelog.d/20230718_185443_nedbat_add_101_test.rst deleted file mode 100644 index c66744d..0000000 --- a/changelog.d/20230718_185443_nedbat_add_101_test.rst +++ /dev/null @@ -1,9 +0,0 @@ -Fixed -..... - -- Changelogs with non-version headings now produce an understandable error - message from ``scriv collect``, thanks to `James Gerity `_, fixing - `issue 100`_. - -.. _issue 100: https://github.com/nedbat/scriv/issues/100 -.. _pull 101: https://github.com/nedbat/scriv/pull/101 diff --git a/changelog.d/20231003_082812_ronny_user_nick_setting.rst b/changelog.d/20231003_082812_ronny_user_nick_setting.rst deleted file mode 100644 index f05c10a..0000000 --- a/changelog.d/20231003_082812_ronny_user_nick_setting.rst +++ /dev/null @@ -1,9 +0,0 @@ -Added -..... - -- Use the git config ``scriv.user_nick`` for the user nick part - of the fragment file. Thanks to `Ronny Pfannschmidt `_, - fixing `issue 103`_. - -.. _issue 103: https://github.com/nedbat/scriv/pull/103 -.. _pull 106: https://github.com/nedbat/scriv/pull/106 diff --git a/changelog.d/20231009_153026_nedbat_command_config.rst b/changelog.d/20231009_153026_nedbat_command_config.rst deleted file mode 100644 index 154a0d2..0000000 --- a/changelog.d/20231009_153026_nedbat_command_config.rst +++ /dev/null @@ -1,6 +0,0 @@ -Added -..... - -- Settings can now be prefixed with ``command:`` to execute the rest of the - setting as a shell command. The output of the command will be used as the - value of the setting. diff --git a/changelog.d/20231012_061908_nedbat.rst b/changelog.d/20231012_061908_nedbat.rst deleted file mode 100644 index 2314db0..0000000 --- a/changelog.d/20231012_061908_nedbat.rst +++ /dev/null @@ -1,7 +0,0 @@ -Changed -....... - -- If there are no changelog fragments, ``scriv collect`` now exits with status - code of 2, fixing `issue 110`_. - -.. _issue 110: https://github.com/nedbat/scriv/issues/110 diff --git a/src/scriv/__init__.py b/src/scriv/__init__.py index f13f307..73842f6 100644 --- a/src/scriv/__init__.py +++ b/src/scriv/__init__.py @@ -2,4 +2,4 @@ Scriv changelog management tool. """ -__version__ = "1.3.1" +__version__ = "1.4.0"