diff --git a/Augmentor/__init__.py b/Augmentor/__init__.py index cb7b9e5..e97ccd0 100644 --- a/Augmentor/__init__.py +++ b/Augmentor/__init__.py @@ -15,6 +15,6 @@ __author__ = """Marcus D. Bloice""" __email__ = 'marcus.bloice@medunigraz.at' -__version__ = '0.2.4' +__version__ = '0.2.5' __all__ = ['Pipeline', 'DataFramePipeline', 'DataPipeline'] diff --git a/README.md b/README.md index 9280912..186f57e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Augmentor is an image augmentation library in Python for machine learning. It aims to be a standalone library that is platform and framework independent, which is more convenient, allows for finer grained control over augmentation, and implements the most real-world relevant augmentation techniques. It employs a stochastic approach using building blocks that allow for operations to be pieced together in a pipeline. -[![PyPI](https://img.shields.io/badge/Augmentor-v0.2.3-blue.svg?maxAge=2592000)](https://pypi.python.org/pypi/Augmentor) +[![PyPI](https://img.shields.io/badge/Augmentor-v0.2.5-blue.svg?maxAge=2592000)](https://pypi.python.org/pypi/Augmentor) [![Supported Python Versions](https://img.shields.io/badge/python-2.7%20%7C%203.4%20%7C%203.5%20%7C%203.6-blue.svg)](https://pypi.python.org/pypi/Augmentor) [![Documentation Status](https://readthedocs.org/projects/augmentor/badge/?version=master)](https://augmentor.readthedocs.io/en/master/?badge=master) [![Build Status](https://travis-ci.org/mdbloice/Augmentor.svg?branch=master)](https://travis-ci.org/mdbloice/Augmentor) diff --git a/docs/conf.py b/docs/conf.py index edfd131..9df076c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,9 +70,9 @@ # 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. diff --git a/setup.py b/setup.py index 308943c..9ba1339 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='Augmentor', packages=['Augmentor'], - version='0.2.4', + version='0.2.5', description='Image augmentation library for Machine Learning', long_description='Image augmentation library for Machine Learning', license='MIT',