diff options
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | doc/ranger.1 | 2 | ||||
-rw-r--r-- | doc/rifle.1 | 2 | ||||
-rw-r--r-- | ranger/__init__.py | 2 | ||||
-rwxr-xr-x | ranger/ext/rifle.py | 2 |
6 files changed, 8 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f783d9b..7944edab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ This log documents changes between stable versions. +# 2017-01-08: version 1.8.1 +* Fixed `:scout` break due to incompatible change in python 3.6 + # 2016-12-24: version 1.8.0 * scope.sh is now needed for the now fully scriptable image previews * Overhaul of version control system integration, now with threads diff --git a/README.md b/README.md index b6e1d548..b1512797 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -ranger v.1.8.0 +ranger v.1.8.1 ============== [![Build Status](https://travis-ci.org/ranger/ranger.svg?branch=master)](https://travis-ci.org/ranger/ranger) diff --git a/doc/ranger.1 b/doc/ranger.1 index a9b4ed0a..095e061a 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -129,7 +129,7 @@ .\" ======================================================================== .\" .IX Title "RANGER 1" -.TH RANGER 1 "ranger-1.8.0" "12/24/2016" "ranger manual" +.TH RANGER 1 "ranger-1.8.1" "01/08/2017" "ranger manual" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/doc/rifle.1 b/doc/rifle.1 index 1ab9dc05..1e75474f 100644 --- a/doc/rifle.1 +++ b/doc/rifle.1 @@ -129,7 +129,7 @@ .\" ======================================================================== .\" .IX Title "RIFLE 1" -.TH RIFLE 1 "rifle-1.8.0" "12/24/2016" "rifle manual" +.TH RIFLE 1 "rifle-1.8.1" "01/08/2017" "rifle manual" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/ranger/__init__.py b/ranger/__init__.py index cef2e096..1ef62b87 100644 --- a/ranger/__init__.py +++ b/ranger/__init__.py @@ -14,7 +14,7 @@ import tempfile # Information __license__ = 'GPL3' -__version__ = '1.8.0' +__version__ = '1.8.1' __author__ = __maintainer__ = 'Roman Zimbelmann' __email__ = 'hut@hut.pm' diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py index a9de6a2a..7d1bd59e 100755 --- a/ranger/ext/rifle.py +++ b/ranger/ext/rifle.py @@ -19,7 +19,7 @@ import re from subprocess import Popen, PIPE import sys -__version__ = 'rifle 1.8.0' +__version__ = 'rifle 1.8.1' # Options and constants that a user might want to change: DEFAULT_PAGER = 'less' |