Prepping release

This commit is contained in:
Michael Lazar
2017-03-29 23:33:23 -07:00
parent edc40af723
commit 07edc9fb04
6 changed files with 29 additions and 7 deletions

View File

@@ -19,13 +19,12 @@ Thanks to the following people for their contributions to this project.
* `mardiqwop <https://github.com/mardiqwop>`_ * `mardiqwop <https://github.com/mardiqwop>`_
* `5225225 <https://github.com/5225225>`_ * `5225225 <https://github.com/5225225>`_
* `Shawn Hind <https://github.com/shawnhind>`_ * `Shawn Hind <https://github.com/shawnhind>`_
* `Alex Kahan <https://github.com/alexk307>`_
* `JuanPablo <https://github.com/juanpabloaj>`_ * `JuanPablo <https://github.com/juanpabloaj>`_
* `Robert Greener <https://github.com/ragreener1>`_ * `Robert Greener <https://github.com/ragreener1>`_
* `nagracks <https://github.com/nagracks>`_
* `Gustavo Zambonin <https://github.com/zambonin>`_ * `Gustavo Zambonin <https://github.com/zambonin>`_
* `Lorenz Leitner <https://github.com/LoLei>`_ * `Lorenz Leitner <https://github.com/LoLei>`_
* `Reshef Elisha <https://github.com/ReshefElisha>`_ * `Reshef Elisha <https://github.com/ReshefElisha>`_
* `nagracks <https://github.com/nagracks>`_
* `afloofloo <https://github.com/afloofloo>`_ * `afloofloo <https://github.com/afloofloo>`_
* `Charles Saracco <https://github.com/crsaracco>`_ * `Charles Saracco <https://github.com/crsaracco>`_
* `Fabio Alessandro Locati <https://github.com/Fale>`_ * `Fabio Alessandro Locati <https://github.com/Fale>`_
@@ -33,4 +32,5 @@ Thanks to the following people for their contributions to this project.
* `Marc Abramowitz <https://github.com/msabramo>`_ * `Marc Abramowitz <https://github.com/msabramo>`_
* `Matthew Smith <https://github.com/msmith491>`_ * `Matthew Smith <https://github.com/msmith491>`_
* `Ram-Z <https://github.com/Ram-Z>`_ * `Ram-Z <https://github.com/Ram-Z>`_
* `Wieland Hoffmann <https://github.com/mineo>`_ * `Wieland Hoffmann <https://github.com/mineo>`_
* `Adam Talsma <https://github.com/a-tal>`_

View File

@@ -2,6 +2,7 @@
RTV Changelog RTV Changelog
============= =============
.. _1.15.0: http://github.com/michael-lazar/rtv/releases/tag/v1.15.0
.. _1.14.1: http://github.com/michael-lazar/rtv/releases/tag/v1.14.1 .. _1.14.1: http://github.com/michael-lazar/rtv/releases/tag/v1.14.1
.. _1.13.0: http://github.com/michael-lazar/rtv/releases/tag/v1.13.0 .. _1.13.0: http://github.com/michael-lazar/rtv/releases/tag/v1.13.0
.. _1.12.1: http://github.com/michael-lazar/rtv/releases/tag/v1.12.1 .. _1.12.1: http://github.com/michael-lazar/rtv/releases/tag/v1.12.1
@@ -24,6 +25,27 @@ 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.15.0_ (2017-03-30)
--------------------
Features
* Added the ability to open comment threads using the submission's
permalink. E.g. **/comments/30rwj2**
Bugfixes
* Updated ``requests`` requirement to fix a bug in version 2.3.0.
* Fixed an edge case where comment trees were unfolding out of order.
Codebase
* Removed dependency on the PyPI ``praw`` package. A version of PRAW 3
is now bundled with rtv. This should make installation easier because
users are no longer required to maintain a legacy version of praw in
their python dependencies.
* Removed ``update-checker`` dependency.
-------------------- --------------------
1.14.1_ (2017-01-12) 1.14.1_ (2017-01-12)
-------------------- --------------------

2
rtv.1
View File

@@ -1,4 +1,4 @@
.TH "RTV" "1" "January 13, 2017" "Version 1.14.1" "Usage and Commands" .TH "RTV" "1" "March 30, 2017" "Version 1.15.0" "Usage and Commands"
.SH NAME .SH NAME
RTV - Reddit Terminal Viewer RTV - Reddit Terminal Viewer
.SH SYNOPSIS .SH SYNOPSIS

View File

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

View File

@@ -10,7 +10,7 @@ from __future__ import absolute_import
import sys import sys
__praw_hash__ = 'a632ff005fc09e74a8d3d276adc10aa92638962c' __praw_hash__ = 'b'3bc535e4778047b78d9aeb2e3a5b108f96a091b2''
__praw_bundled__ = True __praw_bundled__ = True

2
scripts/update_packages.py Normal file → Executable file
View File

@@ -28,7 +28,7 @@ def main():
p.wait() p.wait()
commit = p.stdout.read().strip() commit = p.stdout.read().strip()
print('Found commit %s' % commit) print('Found commit %s' % commit)
regex = '"s/^__praw_hash__ =.*$/__praw_hash__ = \'%s\'/g"' % commit regex = 's/^__praw_hash__ =.*$/__praw_hash__ = \'%s\'/g' % commit
packages_root = os.path.join(ROOT, 'rtv', 'packages', '__init__.py') packages_root = os.path.join(ROOT, 'rtv', 'packages', '__init__.py')
print('Updating commit hash in %s' % packages_root) print('Updating commit hash in %s' % packages_root)
subprocess.check_call(['sed', '-i', '', regex, packages_root]) subprocess.check_call(['sed', '-i', '', regex, packages_root])