Skip to content

Commit f4b9854

Browse files
committed
Version bump to 0.2.0
1 parent 251ff54 commit f4b9854

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Augmentor/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515

1616
__author__ = """Marcus D. Bloice"""
1717
__email__ = '[email protected]'
18-
__version__ = '0.1.10'
18+
__version__ = '0.2.0'
1919

2020
__all__ = ['Pipeline']

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Augmentor is an image augmentation library in Python for machine learning. It aims to be a platform and framework independent library, which is more convenient, allows for finer grained control over augmentation, and implements as many augmentation procedures as possible. It employs a stochastic approach using building blocks that allow for operations to be pieced together in a pipeline.
44

5-
[![PyPI](https://img.shields.io/badge/Augmentor-v0.1.10-blue.svg?maxAge=2592000)](https://pypi.python.org/pypi/Augmentor)
5+
[![PyPI](https://img.shields.io/badge/Augmentor-v0.2.0-blue.svg?maxAge=2592000)](https://pypi.python.org/pypi/Augmentor)
66
[![Documentation Status](https://readthedocs.org/projects/augmentor/badge/?version=master)](https://augmentor.readthedocs.io/en/master/?badge=master)
77
[![Build Status](https://travis-ci.org/mdbloice/Augmentor.svg?branch=master)](https://travis-ci.org/mdbloice/Augmentor)
88
[![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE.md)

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@
7070
# built documents.
7171
#
7272
# The short X.Y version.
73-
version = u'0.1.10'
73+
version = u'0.2.0'
7474
# The full version, including alpha/beta/rc tags.
75-
release = u'0.1.10'
75+
release = u'0.2.0'
7676

7777
# The language for content autogenerated by Sphinx. Refer to documentation
7878
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name='Augmentor',
55
packages=['Augmentor'],
6-
version='0.1.10',
6+
version='0.2.0',
77
description='Image augmentation library for Machine Learning',
88
long_description='Image augmentation library for Machine Learning',
99
license='MIT',

0 commit comments

Comments
 (0)