diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 29c37e93..3e15a127 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.5.0 +current_version = 2.5.1 commit = True tag = True message = "Release {new_version}" diff --git a/CHANGES.rst b/CHANGES.rst index 118618c9..6682ab06 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ CHANGELOG ========= -unreleased +2.5.1 ---------- - [fix] Added LC_* env vars to running initdb and other utilities. Now all tools and server are using same, C locale diff --git a/README.rst b/README.rst index 623da39e..c4f8ed50 100644 --- a/README.rst +++ b/README.rst @@ -24,12 +24,12 @@ pytest-postgresql Package status -------------- -.. image:: https://travis-ci.org/ClearcodeHQ/pytest-postgresql.svg?branch=v2.5.0 +.. image:: https://travis-ci.org/ClearcodeHQ/pytest-postgresql.svg?branch=v2.5.1 :target: https://travis-ci.org/ClearcodeHQ/pytest-postgresql :alt: Tests -.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-postgresql/badge.png?branch=v2.5.0 - :target: https://coveralls.io/r/ClearcodeHQ/pytest-postgresql?branch=v2.5.0 +.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-postgresql/badge.png?branch=v2.5.1 + :target: https://coveralls.io/r/ClearcodeHQ/pytest-postgresql?branch=v2.5.1 :alt: Coverage Status What is this? diff --git a/setup.py b/setup.py index 079d12a4..50947e97 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ def read(fname): setup( name='pytest-postgresql', - version='2.5.0', + version='2.5.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 e469214d..3deb3df2 100644 --- a/src/pytest_postgresql/__init__.py +++ b/src/pytest_postgresql/__init__.py @@ -24,4 +24,4 @@ else: psycopg2cffi.compat.register() -__version__ = '2.5.0' +__version__ = '2.5.1'