summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornfnty <git@nfnty.se>2017-02-10 20:18:02 +0100
committernfnty <git@nfnty.se>2017-02-10 20:20:25 +0100
commit259a4c9b55b72fdb1fa73850701d1293a2b1b23a (patch)
tree79083b1f9b4df12c946ce9ee02c865f758e1b964
parent0008feed6e111b2d7f823a4c47f1a9577ed6251e (diff)
Beta release 1.9.0b3v1.9.0b3
-rw-r--r--README.md2
-rw-r--r--doc/ranger.12
-rw-r--r--doc/rifle.12
-rw-r--r--ranger/__init__.py4
-rwxr-xr-xranger/ext/rifle.py2
5 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 65eb4c2f..341e32a0 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-ranger 1.9.0b2
+ranger 1.9.0b3
==============
[![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 0103ad4b..11ad03ad 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -129,7 +129,7 @@
.\" ========================================================================
.\"
.IX Title "RANGER 1"
-.TH RANGER 1 "ranger-1.9.0b2" "2017-02-10" "ranger manual"
+.TH RANGER 1 "ranger-1.9.0b3" "2017-02-10" "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 65457116..542f9477 100644
--- a/doc/rifle.1
+++ b/doc/rifle.1
@@ -129,7 +129,7 @@
.\" ========================================================================
.\"
.IX Title "RIFLE 1"
-.TH RIFLE 1 "rifle-1.9.0b2" "2017-02-10" "rifle manual"
+.TH RIFLE 1 "rifle-1.9.0b3" "2017-02-10" "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 4d1dfbd4..a75d28d7 100644
--- a/ranger/__init__.py
+++ b/ranger/__init__.py
@@ -14,7 +14,7 @@ import os
# Information
__license__ = 'GPL3'
-__version__ = '1.9.0b2'
+__version__ = '1.9.0b3'
__author__ = __maintainer__ = 'Roman Zimbelmann'
__email__ = 'hut@hut.pm'
@@ -27,7 +27,7 @@ MACRO_DELIMITER = '%'
MACRO_DELIMITER_ESC = '%%'
DEFAULT_PAGER = 'less'
USAGE = '%prog [options] [path]'
-VERSION = 'ranger-master {0}'.format(__version__)
+VERSION = 'ranger-beta {0}'.format(__version__)
# These variables are ignored if the corresponding
diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py
index d1a5371b..7fcc7464 100755
--- a/ranger/ext/rifle.py
+++ b/ranger/ext/rifle.py
@@ -21,7 +21,7 @@ import re
from subprocess import Popen, PIPE
import sys
-__version__ = 'rifle 1.9.0b2'
+__version__ = 'rifle 1.9.0b3'
# Options and constants that a user might want to change:
DEFAULT_PAGER = 'less'