From 6dc73cf5ebb1ce3893c6dea544f98418d3aea1f7 Mon Sep 17 00:00:00 2001 From: Anthony Forsberg Date: Mon, 16 Jan 2017 16:45:46 -0500 Subject: [PATCH] version bump, readme correction --- README.rst | 2 +- bandcamp_dl/bandcamp_dl.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index e64d198..730b3c6 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ From Wheel 1. Download the wheel (``.whl``) from PyPI or the Releases page 2. ``cd`` to the directory containing the ``.whl`` file -2. ``pip install .whl`` +3. ``pip install .whl`` From Source ----------- diff --git a/bandcamp_dl/bandcamp_dl.py b/bandcamp_dl/bandcamp_dl.py index eece6b5..a29052a 100755 --- a/bandcamp_dl/bandcamp_dl.py +++ b/bandcamp_dl/bandcamp_dl.py @@ -51,7 +51,7 @@ from .bandcampdownloader import BandcampDownloader def main(): - arguments = docopt(__doc__, version='bandcamp-dl 0.0.7-02') + arguments = docopt(__doc__, version='bandcamp-dl 0.0.7-03') bandcamp = Bandcamp() basedir = arguments['--base-dir'] or os.getcwd() diff --git a/setup.py b/setup.py index 6f1de23..386db3f 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ here = path.abspath(path.dirname(__file__)) setup( name='bandcamp-downloader', - version='0.0.7-02', + version='0.0.7-03', description='bandcamp-dl downloads albums and tracks from Bandcamp for you', long_description=open('README.rst').read(), url='https://github.com/iheanyi/bandcamp-dl',