Upping version

This commit is contained in:
Michael Lazar
2018-03-11 16:53:50 -04:00
parent 063323bd03
commit 7bfda438cc
5 changed files with 31 additions and 6 deletions

View File

@@ -18,6 +18,7 @@ Thanks to the following people for their contributions to this project.
* `Toby Hughes <https://github.com/tobywhughes>`_ * `Toby Hughes <https://github.com/tobywhughes>`_
* `Noah Morrison <https://github.com/noahmorrison>`_ * `Noah Morrison <https://github.com/noahmorrison>`_
* `mardiqwop <https://github.com/mardiqwop>`_ * `mardiqwop <https://github.com/mardiqwop>`_
* `5225225 <https://github.com/5225225>`_
* `Shawn Hind <https://github.com/shawnhind>`_ * `Shawn Hind <https://github.com/shawnhind>`_
* `Antoine Nguyen <https://github.com/anhtuann>`_ * `Antoine Nguyen <https://github.com/anhtuann>`_
* `JuanPablo <https://github.com/juanpabloaj>`_ * `JuanPablo <https://github.com/juanpabloaj>`_
@@ -27,10 +28,9 @@ Thanks to the following people for their contributions to this project.
* `Lorenz Leitner <https://github.com/LoLei>`_ * `Lorenz Leitner <https://github.com/LoLei>`_
* `Reshef Elisha <https://github.com/ReshefElisha>`_ * `Reshef Elisha <https://github.com/ReshefElisha>`_
* `Ryan Reno <https://github.com/rreno>`_ * `Ryan Reno <https://github.com/rreno>`_
* `jupart <https://github.com/jupart>`_ * `Justin Partain <https://github.com/jupart>`_
* `afloofloo <https://github.com/afloofloo>`_ * `afloofloo <https://github.com/afloofloo>`_
* `Caleb Perkins <https://github.com/calebperkins>`_ * `Caleb Perkins <https://github.com/calebperkins>`_
* `Charles Saracco <https://github.com/crsaracco>`_ * `Charles Saracco <https://github.com/crsaracco>`_
* `Corey McCandless <https://github.com/cmccandless>`_ * `Corey McCandless <https://github.com/cmccandless>`_
* `Danilo G. Baio <https://github.com/dbaio>`_ * `Danilo G. Baio <https://github.com/dbaio>`_
* `Fabio Alessandro Locati <https://github.com/Fale>`_

View File

@@ -2,6 +2,7 @@
RTV Changelog RTV Changelog
============= =============
.. _1.22.0: http://github.com/michael-lazar/rtv/releases/tag/v1.22.0
.. _1.21.0: http://github.com/michael-lazar/rtv/releases/tag/v1.21.0 .. _1.21.0: http://github.com/michael-lazar/rtv/releases/tag/v1.21.0
.. _1.20.0: http://github.com/michael-lazar/rtv/releases/tag/v1.20.0 .. _1.20.0: http://github.com/michael-lazar/rtv/releases/tag/v1.20.0
.. _1.19.0: http://github.com/michael-lazar/rtv/releases/tag/v1.19.0 .. _1.19.0: http://github.com/michael-lazar/rtv/releases/tag/v1.19.0
@@ -33,6 +34,26 @@ RTV Changelog
.. _1.2.1: http://github.com/michael-lazar/rtv/releases/tag/v1.2.1 .. _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.2: http://github.com/michael-lazar/rtv/releases/tag/v1.2
--------------------
1.22.0_ (2018-03-07)
--------------------
Features
* Added the ``--no-flash`` option to disable terminal flashing.
Bugfixes
* Fixed automatically exiting on launch when trying to open an invalid
subreddit with the ``-s`` flag.
* Fixed error handling for HTTP request timeouts when checking for new
messages in the inbox.
* Fixed a typo in the sample theme config.
Documentation
* Added the FreeBSD package to the README.
-------------------- --------------------
1.21.0_ (2017-12-30) 1.21.0_ (2017-12-30)
-------------------- --------------------

6
rtv.1
View File

@@ -1,4 +1,4 @@
.TH "RTV" "1" "December 31, 2017" "Version 1.21.0" "Usage and Commands" .TH "RTV" "1" "March 08, 2018" "Version 1.22.0" "Usage and Commands"
.SH NAME .SH NAME
RTV - Reddit Terminal Viewer RTV - Reddit Terminal Viewer
.SH SYNOPSIS .SH SYNOPSIS
@@ -66,6 +66,10 @@ Open external links using programs defined in the mailcap config
\fB\-V\fR, \fB\-\-version\fR \fB\-V\fR, \fB\-\-version\fR
show program's version number and exit show program's version number and exit
.TP
\fB\-\-no\-flash\fR
Disable screen flashing
.SH CONTROLS .SH CONTROLS
Move the cursor using the arrow keys or vim style movement. Move the cursor using the arrow keys or vim style movement.

View File

@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = '1.21.0' __version__ = '1.22.0'

View File

@@ -10,7 +10,7 @@ from __future__ import absolute_import
import sys import sys
__praw_hash__ = 'f0373b788356e212be184590741383cc4747a682' __praw_hash__ = '690f839f2e10b87cc8ad5cbcbade968d5d0d7434'
__praw_bundled__ = True __praw_bundled__ = True