diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b5e35c6d..af5aa4df 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0 +current_version = 1.1.1 commit = True tag = True message = "Release {new_version}" diff --git a/CHANGES.rst b/CHANGES.rst index f748ad00..04ff2a01 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ CHANGELOG ========= -unreleased +1.1.1 ------- * [bugfix] - Fixing the default pg_ctl path creation diff --git a/README.rst b/README.rst index 0be14043..2399b831 100644 --- a/README.rst +++ b/README.rst @@ -20,16 +20,16 @@ pytest-postgresql Package status -------------- -.. image:: https://travis-ci.org/ClearcodeHQ/pytest-postgresql.svg?branch=v1.1.0 +.. image:: https://travis-ci.org/ClearcodeHQ/pytest-postgresql.svg?branch=v1.1.1 :target: https://travis-ci.org/ClearcodeHQ/pytest-postgresql :alt: Tests -.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-postgresql/badge.png?branch=v1.1.0 - :target: https://coveralls.io/r/ClearcodeHQ/pytest-postgresql?branch=v1.1.0 +.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-postgresql/badge.png?branch=v1.1.1 + :target: https://coveralls.io/r/ClearcodeHQ/pytest-postgresql?branch=v1.1.1 :alt: Coverage Status -.. image:: https://requires.io/github/ClearcodeHQ/pytest-postgresql/requirements.svg?tag=v1.1.0 - :target: https://requires.io/github/ClearcodeHQ/pytest-postgresql/requirements/?tag=v1.1.0 +.. image:: https://requires.io/github/ClearcodeHQ/pytest-postgresql/requirements.svg?tag=v1.1.1 + :target: https://requires.io/github/ClearcodeHQ/pytest-postgresql/requirements/?tag=v1.1.1 :alt: Requirements Status What is this? diff --git a/setup.py b/setup.py index 6c47cac4..48d3f1f2 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ def read(fname): setup( name='pytest-postgresql', - version='1.1.0', + version='1.1.1', description='Postgresql fixtures and fixture factories for Pytest.', long_description=( read('README.rst') + '\n\n' + read('CHANGES.rst') diff --git a/src/pytest_postgresql/__init__.py b/src/pytest_postgresql/__init__.py index 748686a4..3c751cbd 100644 --- a/src/pytest_postgresql/__init__.py +++ b/src/pytest_postgresql/__init__.py @@ -20,7 +20,7 @@ import logging -__version__ = '1.1.0' +__version__ = '1.1.1' logger = logging.getLogger(__name__)