diff --git a/README.rst b/README.rst index 5d4da71..0da93d8 100644 --- a/README.rst +++ b/README.rst @@ -32,7 +32,7 @@ It is using `OWSLib` from the `GeoPython` project. You can try Birdy online using Binder, just click on the binder link below. .. image:: https://mybinder.org/badge_logo.svg - :target: https://mybinder.org/v2/gh/bird-house/birdy.git/v0.5.0?filepath=notebooks + :target: https://mybinder.org/v2/gh/bird-house/birdy.git/v0.5.1?filepath=notebooks :alt: Binder Launcher Birdy is part of the `Birdhouse`_ project. diff --git a/birdy/__init__.py b/birdy/__init__.py index 3b0f866..9d223e8 100644 --- a/birdy/__init__.py +++ b/birdy/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.5.0' +__version__ = '0.5.1' from .client import WPSClient diff --git a/docs/source/conf.py b/docs/source/conf.py index dba67cc..6d1486e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -66,7 +66,7 @@ # The short X.Y version. version = '' # The full version, including alpha/beta/rc tags. -release = '0.5.0' +release = '0.5.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 617ba3d..3e29bb9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.5.1 commit = True tag = True @@ -19,18 +19,18 @@ search = {current_version} replace = {new_version} [tool:pytest] -addopts = +addopts = --strict --tb=native python_files = test_*.py -markers = +markers = online: mark test to need internet connection slow: mark test to be slow [flake8] ignore = F401,E402 max-line-length = 120 -exclude = +exclude = .git, __pycache__, docs, @@ -41,3 +41,4 @@ exclude = [doc8] ignore-path = docs/build,docs/source/_templates,docs/source/_static max-line-length = 120 +