diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0ace40e2..7006b75e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _1.25.1: http://github.com/michael-lazar/rtv/releases/tag/v1.25.1 .. _1.25.0: http://github.com/michael-lazar/rtv/releases/tag/v1.25.0 .. _1.24.0: http://github.com/michael-lazar/rtv/releases/tag/v1.24.0 .. _1.23.0: http://github.com/michael-lazar/rtv/releases/tag/v1.23.0 @@ -38,6 +39,16 @@ RTV Changelog .. _1.2.1: http://github.com/michael-lazar/rtv/releases/tag/v1.2.1 .. _1.2: http://github.com/michael-lazar/rtv/releases/tag/v1.2 +-------------------- +1.25.1_ (2019-02-13) +-------------------- + +Bugfixes + +* Fixed a bug that was causing newlines to be stripped when posting comments + and submissions. + + -------------------- 1.25.0_ (2019-02-03) -------------------- diff --git a/rtv.1 b/rtv.1 index 79dfebe9..462d17ba 100644 --- a/rtv.1 +++ b/rtv.1 @@ -1,4 +1,4 @@ -.TH "RTV" "1" "February 03, 2019" "Version 1.25.0" "Usage and Commands" +.TH "RTV" "1" "February 13, 2019" "Version 1.25.1" "Usage and Commands" .SH NAME RTV - Reddit Terminal Viewer .SH SYNOPSIS diff --git a/rtv/__version__.py b/rtv/__version__.py index 66c76184..6a62d69a 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.25.0' +__version__ = '1.25.1' diff --git a/scripts/RELEASE_CHECKLIST.md b/scripts/RELEASE_CHECKLIST.md index 00b459d5..bfdf37e4 100644 --- a/scripts/RELEASE_CHECKLIST.md +++ b/scripts/RELEASE_CHECKLIST.md @@ -4,7 +4,7 @@ Release Checklist 1. Switch to the master branch and stash any uncommited changes. 2. Bump the version number in [rtv/\_\_version\_\_.py](rtv/__version__.py). 3. Update the release notes in the [CHANGELOG.rst](CHANGELOG.rst). -4. Update the contributer list by running [``scripts/build_authors.py``](scripts/build_authors.py). +4. Update the contributor list by running [``scripts/build_authors.py``](scripts/build_authors.py). 5. Re-generate the manpage by running [``scripts/build_manpage.py``](scripts/build_manpage.py). 6. Make sure the bundled packages are up-to-date by running [``scripts/update_packages.py``](scripts/update_packages.py). 7. Commit all changes to the master branch.