diff --git a/README.md b/README.md index 826941c28..550226692 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ repository [imgaug-doc](https://github.com/aleju/imgaug-doc). simplified augmentation interface. * **0.2.8**: Improved performance, dtype support and multicore augmentation. -See [changelog](CHANGELOG.md) for more details. +See [changelogs/](changelogs/) for more details. diff --git a/imgaug/__init__.py b/imgaug/__init__.py index 8a037563d..d588866e8 100644 --- a/imgaug/__init__.py +++ b/imgaug/__init__.py @@ -11,4 +11,4 @@ import imgaug.parameters as parameters import imgaug.dtypes as dtypes -__version__ = '0.2.9' +__version__ = '0.3.0' diff --git a/setup.py b/setup.py index 69a61a5e2..2968b9b70 100644 --- a/setup.py +++ b/setup.py @@ -6,11 +6,11 @@ setup( name="imgaug", - version="0.2.9", + version="0.3.0", author="Alexander Jung", author_email="kontakt@ajung.name", url="https://github.com/aleju/imgaug", - download_url="https://github.com/aleju/imgaug/archive/0.2.9.tar.gz", + download_url="https://github.com/aleju/imgaug/archive/0.3.0.tar.gz", install_requires=[ "six", "numpy>=1.15",