summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuni <hut@hut.pm>2024-11-04 21:06:37 +0100
committerYuni <hut@hut.pm>2024-11-04 21:16:10 +0100
commit55fc2839f693aed9486d211694d7317d78161341 (patch)
tree69de547d557c7ffae1b3683224f160867eb74de7
parent4c22bb9cb1e540dbd4cddcf6e536775b5fbe79b8 (diff)
Bump version to v1.9.4v1.9.4stable
Signed-off-by: Yuni <hut@hut.pm>
-rw-r--r--CHANGELOG.md3
-rw-r--r--README.md2
-rw-r--r--doc/ranger.12
-rw-r--r--doc/rifle.12
-rw-r--r--ranger/__init__.py2
-rwxr-xr-xranger/ext/rifle.py2
6 files changed, 8 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 90c89763..0d0affa9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
This log documents changes between stable versions.
+# 2024-11-04: version 1.9.4
+* Fixed import error of deprecated imghdr python library
+
# 2019-12-31: version 1.9.3
* Added Comic cbz/cbr previews
* Added DjVu previews
diff --git a/README.md b/README.md
index f18d320e..1b412d90 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-ranger 1.9.3
+ranger 1.9.4
============
<img src="https://ranger.github.io/ranger_logo.png" width="150">
diff --git a/doc/ranger.1 b/doc/ranger.1
index 57646fc7..ca7cff5a 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -133,7 +133,7 @@
.\" ========================================================================
.\"
.IX Title "RANGER 1"
-.TH RANGER 1 "ranger-1.9.3" "2019-12-31" "ranger manual"
+.TH RANGER 1 "ranger-1.9.4" "2024-11-04" "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 1d3553f4..ca63139c 100644
--- a/doc/rifle.1
+++ b/doc/rifle.1
@@ -133,7 +133,7 @@
.\" ========================================================================
.\"
.IX Title "RIFLE 1"
-.TH RIFLE 1 "rifle-1.9.3" "2019-12-31" "rifle manual"
+.TH RIFLE 1 "rifle-1.9.4" "2024-11-04" "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 916cbc8a..4b67a10a 100644
--- a/ranger/__init__.py
+++ b/ranger/__init__.py
@@ -35,7 +35,7 @@ def version_helper():
# Information
__license__ = 'GPL3'
-__version__ = '1.9.3'
+__version__ = '1.9.4'
__release__ = True
__author__ = __maintainer__ = 'Roman Zimbelmann'
__email__ = 'hut@hut.pm'
diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py
index e0773324..91d9b8d2 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.3'
+__version__ = 'rifle 1.9.4'
# Options and constants that a user might want to change:
DEFAULT_PAGER = 'less'