From c989ca66b64b202e3ab1087319acae8575f34ece Mon Sep 17 00:00:00 2001 From: nfnty Date: Fri, 10 Feb 2017 07:24:08 +0100 Subject: Beta release 1.9.0b1 --- Makefile | 2 +- README.md | 2 +- doc/ranger.1 | 2 +- doc/rifle.1 | 2 +- ranger/__init__.py | 4 ++-- ranger/ext/rifle.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index df1189a5..424bbe18 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # License: GNU GPL version 3, see the file "AUTHORS" for details. NAME = ranger -VERSION = $(shell grep -m 1 -o '[0-9][0-9.]\+' README.md) +VERSION = $(shell grep -m 1 -o '[0-9][0-9.]\+\S*' README.md) NAME_RIFLE = rifle VERSION_RIFLE = $(VERSION) SNAPSHOT_NAME ?= $(NAME)-$(VERSION)-$(shell git rev-parse HEAD | cut -b 1-8).tar.gz diff --git a/README.md b/README.md index 09b89fe7..bea0db52 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -ranger v.1.8.1 +ranger v.1.9.0b1 ============== [![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 1d709719..2f7c8248 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -129,7 +129,7 @@ .\" ======================================================================== .\" .IX Title "RANGER 1" -.TH RANGER 1 "ranger-1.8.1" "2017-02-09" "ranger manual" +.TH RANGER 1 "ranger-1.9.0b1" "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 3c97c771..eb0271e4 100644 --- a/doc/rifle.1 +++ b/doc/rifle.1 @@ -129,7 +129,7 @@ .\" ======================================================================== .\" .IX Title "RIFLE 1" -.TH RIFLE 1 "rifle-1.8.1" "2017-02-09" "rifle manual" +.TH RIFLE 1 "rifle-1.9.0b1" "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 9072566d..98fcc861 100644 --- a/ranger/__init__.py +++ b/ranger/__init__.py @@ -14,7 +14,7 @@ import os # Information __license__ = 'GPL3' -__version__ = '1.8.1' +__version__ = '1.9.0b1' __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 0bba937d..6d86ace4 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.8.1' +__version__ = 'rifle 1.9.0b1' # Options and constants that a user might want to change: DEFAULT_PAGER = 'less' -- cgit v1.2.3