diff --git a/README.md b/README.md index 48146a720..2fe875c48 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ Required packages: OpenCV has to be manually installed. The other package should auto-install themselves. To install, simply use `sudo pip install imgaug`. That version might be outdated though. To always get the newest version directly from github use `sudo pip install git+https://github.com/aleju/imgaug`. -Alternatively, you can download the repository via `git clone https://github.com/aleju/imgaug` and install by using `python setup.py sdist && sudo pip install dist/imgaug-0.2.4.tar.gz`. +Alternatively, you can download the repository via `git clone https://github.com/aleju/imgaug` and install by using `python setup.py sdist && sudo pip install dist/imgaug-0.2.5.tar.gz`. To deinstall the library, just execute `sudo pip uninstall imgaug`. diff --git a/docs/conf.py b/docs/conf.py index 69ebdf028..56760adee 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -79,9 +79,9 @@ def __getattr__(cls, name): # built documents. # # The short X.Y version. -version = u'0.2.4' +version = u'0.2.5' # The full version, including alpha/beta/rc tags. -release = u'0.2.4' +release = u'0.2.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -192,6 +192,3 @@ def __getattr__(cls, name): author, 'imgaug', 'One line description of project.', 'Miscellaneous'), ] - - - diff --git a/docs/source/installation.rst b/docs/source/installation.rst index b56ebeaad..7bd636905 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -29,7 +29,7 @@ Alternatively, you can install the latest version which was added to pypi via In rare cases, one might prefer to install from the locally cloned repository. This is possible using ``python setup.py sdist && sudo pip install dist/imgaug-VERSION.tar.gz``, -where `VERSION` must be replaced by the current version of the library (e.g. ``imgaug-0.2.4.tar.gz``). +where `VERSION` must be replaced by the current version of the library (e.g. ``imgaug-0.2.5.tar.gz``). The current version can be derived from `setup.py`'s content. To deinstall the library use ``pip uninstall imgaug``. diff --git a/imgaug/__init__.py b/imgaug/__init__.py index 24ec15603..40fd222f2 100644 --- a/imgaug/__init__.py +++ b/imgaug/__init__.py @@ -3,4 +3,4 @@ from . import augmenters from . import parameters -__version__ = '0.2.4' +__version__ = '0.2.5' diff --git a/setup.py b/setup.py index bb2ea5992..5dda37a6b 100644 --- a/setup.py +++ b/setup.py @@ -16,11 +16,11 @@ setup( name="imgaug", - version="0.2.4", + version="0.2.5", author="Alexander Jung", author_email="kontakt@ajung.name", url="https://github.com/aleju/imgaug", - download_url="https://github.com/aleju/imgaug/archive/0.2.4.tar.gz", + download_url="https://github.com/aleju/imgaug/archive/0.2.5.tar.gz", install_requires=["scipy", "scikit-image>=0.11.0", "numpy>=1.7.0", "six"], packages=find_packages(), include_package_data=True,