From 57a616a36f438e1362ea021ca8d92121c016266a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Mon, 22 Aug 2016 12:21:31 +0200 Subject: [PATCH] update README and bump version --- README.rst | 3 ++- gallery_dl/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 67b604ed8b..74b131bc53 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,8 @@ gallery-dl ========== *gallery-dl* is a small command-line tool to download images and entire image -galleries from several image hosting platforms. +galleries from several image hosting platforms. It requires Python 3.3+ to run +and works on Unix-like systems as well as Windows. Installation diff --git a/gallery_dl/__init__.py b/gallery_dl/__init__.py index 4eae50e68e..9765573faa 100644 --- a/gallery_dl/__init__.py +++ b/gallery_dl/__init__.py @@ -10,7 +10,7 @@ __copyright__ = "Copyright 2014-2016 Mike Fährmann" __license__ = "GPLv2" -__version__ = "0.5.0" +__version__ = "0.5.1" __maintainer__ = "Mike Fährmann" __email__ = "mike_faehrmann@web.de" diff --git a/setup.py b/setup.py index 8284d5aa4c..e3db344e12 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def read(fname): setup( name="gallery_dl", - version="0.5.0", + version="0.5.1", description="gallery- and image downloader", long_description=read("README.rst"), url="https://github.com/mikf/gallery-dl",