diff --git a/CHANGELOG b/CHANGELOG index e3c1d90..7308346 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ # Offpunk History -## 1.3 - Unreleased +## 1.3 - April 2th 2022 - Removed dependency to python-magic. File is now used directly (and should be on every system). - Removed dependency to python-editor. If no $VISUAL or $EDITOR, please use "set editor" in Offpunk. - Images are now downloaded before displaying an HTML page (can be disabled with "set download_images_first False") diff --git a/offpunk.py b/offpunk.py index 1cf75a1..c359c8a 100755 --- a/offpunk.py +++ b/offpunk.py @@ -12,7 +12,7 @@ # - Björn Wärmedal # - -_VERSION = "1.2" +_VERSION = "1.3" global BETA BETA = False diff --git a/setup.py b/setup.py index f1b0f4d..b784b71 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='offpunk', - version='1.2', + version='1.3', description="Offline-First Gemini/Web/Gopher/RSS reader and browser", author="Ploum", author_email="offpunk@ploum.eu",