summary refs log tree commit diff stats
path: root/ranger/__init__.py
diff options
context:
space:
mode:
authorhut <hut@lepus.uberspace.de>2015-05-04 19:36:50 +0200
committerhut <hut@lepus.uberspace.de>2015-05-04 19:36:50 +0200
commit4b4d622515414abc83df6960faacb456ea958134 (patch)
treef17861ce12edecced5236f09611797402a974df8 /ranger/__init__.py
parent4a6b56581df93c71a0135f868055aa664cba782a (diff)
downloadranger-4b4d622515414abc83df6960faacb456ea958134.tar.gz
Initial commit v1.7.1
Diffstat (limited to 'ranger/__init__.py')
-rw-r--r--ranger/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/__init__.py b/ranger/__init__.py
index 1712c83e..1a9dad68 100644
--- a/ranger/__init__.py
+++ b/ranger/__init__.py
@@ -13,7 +13,7 @@ import os
 
 # Information
 __license__ = 'GPL3'
-__version__ = '1.7.0'
+__version__ = '1.7.1'
 __author__ = __maintainer__ = 'Roman Zimbelmann'
 __email__ = 'hut@hut.pm'
 
@@ -27,7 +27,7 @@ DEFAULT_PAGER = 'less'
 LOGFILE = '/tmp/ranger_errorlog'
 CACHEDIR = os.path.expanduser("~/.cache/ranger")
 USAGE = '%prog [options] [path]'
-VERSION = 'ranger-master %s\n\nPython %s' % (__version__, sys.version)
+VERSION = 'ranger-stable %s\n\nPython %s' % (__version__, sys.version)
 
 # If the environment variable XDG_CONFIG_HOME is non-empty, CONFDIR is ignored
 # and the configuration directory will be $XDG_CONFIG_HOME/ranger instead.