Prepping release
This commit is contained in:
@@ -19,13 +19,12 @@ Thanks to the following people for their contributions to this project.
|
||||
* `mardiqwop <https://github.com/mardiqwop>`_
|
||||
* `5225225 <https://github.com/5225225>`_
|
||||
* `Shawn Hind <https://github.com/shawnhind>`_
|
||||
* `Alex Kahan <https://github.com/alexk307>`_
|
||||
* `JuanPablo <https://github.com/juanpabloaj>`_
|
||||
* `Robert Greener <https://github.com/ragreener1>`_
|
||||
* `nagracks <https://github.com/nagracks>`_
|
||||
* `Gustavo Zambonin <https://github.com/zambonin>`_
|
||||
* `Lorenz Leitner <https://github.com/LoLei>`_
|
||||
* `Reshef Elisha <https://github.com/ReshefElisha>`_
|
||||
* `nagracks <https://github.com/nagracks>`_
|
||||
* `afloofloo <https://github.com/afloofloo>`_
|
||||
* `Charles Saracco <https://github.com/crsaracco>`_
|
||||
* `Fabio Alessandro Locati <https://github.com/Fale>`_
|
||||
@@ -34,3 +33,4 @@ Thanks to the following people for their contributions to this project.
|
||||
* `Matthew Smith <https://github.com/msmith491>`_
|
||||
* `Ram-Z <https://github.com/Ram-Z>`_
|
||||
* `Wieland Hoffmann <https://github.com/mineo>`_
|
||||
* `Adam Talsma <https://github.com/a-tal>`_
|
||||
@@ -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)
|
||||
--------------------
|
||||
|
||||
2
rtv.1
2
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
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
__version__ = '1.14.1'
|
||||
__version__ = '1.15.0'
|
||||
|
||||
@@ -10,7 +10,7 @@ from __future__ import absolute_import
|
||||
import sys
|
||||
|
||||
|
||||
__praw_hash__ = 'a632ff005fc09e74a8d3d276adc10aa92638962c'
|
||||
__praw_hash__ = 'b'3bc535e4778047b78d9aeb2e3a5b108f96a091b2''
|
||||
__praw_bundled__ = True
|
||||
|
||||
|
||||
|
||||
2
scripts/update_packages.py
Normal file → Executable file
2
scripts/update_packages.py
Normal file → Executable file
@@ -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])
|
||||
|
||||
Reference in New Issue
Block a user