diff --git a/AUTHORS.rst b/AUTHORS.rst index e204ef7..3f2fe31 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -19,13 +19,12 @@ Thanks to the following people for their contributions to this project. * `mardiqwop `_ * `5225225 `_ * `Shawn Hind `_ -* `Alex Kahan `_ * `JuanPablo `_ * `Robert Greener `_ +* `nagracks `_ * `Gustavo Zambonin `_ * `Lorenz Leitner `_ * `Reshef Elisha `_ -* `nagracks `_ * `afloofloo `_ * `Charles Saracco `_ * `Fabio Alessandro Locati `_ @@ -33,4 +32,5 @@ Thanks to the following people for their contributions to this project. * `Marc Abramowitz `_ * `Matthew Smith `_ * `Ram-Z `_ -* `Wieland Hoffmann `_ \ No newline at end of file +* `Wieland Hoffmann `_ +* `Adam Talsma `_ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 89b6b69..300448c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ 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.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 @@ -24,6 +25,27 @@ 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.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) -------------------- diff --git a/rtv.1 b/rtv.1 index 9cc4942..11e6571 100644 --- a/rtv.1 +++ b/rtv.1 @@ -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 RTV - Reddit Terminal Viewer .SH SYNOPSIS diff --git a/rtv/__version__.py b/rtv/__version__.py index 525651f..f9e1514 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.14.1' +__version__ = '1.15.0' diff --git a/rtv/packages/__init__.py b/rtv/packages/__init__.py index bbab3b9..bb40d66 100644 --- a/rtv/packages/__init__.py +++ b/rtv/packages/__init__.py @@ -10,7 +10,7 @@ from __future__ import absolute_import import sys -__praw_hash__ = 'a632ff005fc09e74a8d3d276adc10aa92638962c' +__praw_hash__ = 'b'3bc535e4778047b78d9aeb2e3a5b108f96a091b2'' __praw_bundled__ = True diff --git a/scripts/update_packages.py b/scripts/update_packages.py old mode 100644 new mode 100755 index 8d51a21..0f0815f --- a/scripts/update_packages.py +++ b/scripts/update_packages.py @@ -28,7 +28,7 @@ def main(): p.wait() commit = p.stdout.read().strip() 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') print('Updating commit hash in %s' % packages_root) subprocess.check_call(['sed', '-i', '', regex, packages_root])