Skip to content

Commit

Permalink
"Release 2.0.0"
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Aug 1, 2019
1 parent ffd20d4 commit cb870c2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.4.1
current_version = 2.0.0
commit = True
tag = True
message = "Release {new_version}"
Expand Down
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ Unreleased
- [bugfix] Always start postgresql with LC_ALL, LC_TYPE and LANG set to C.UTF-8.
It makes postgresql start in english.

1.4.1
2.0.0
-------
-------

- [bugfix] Allow creating test databse with hyphens
Expand Down
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ pytest-postgresql
Package status
--------------

.. image:: https://travis-ci.org/ClearcodeHQ/pytest-postgresql.svg?branch=v1.4.1
.. image:: https://travis-ci.org/ClearcodeHQ/pytest-postgresql.svg?branch=v2.0.0
:target: https://travis-ci.org/ClearcodeHQ/pytest-postgresql
:alt: Tests

.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-postgresql/badge.png?branch=v1.4.1
:target: https://coveralls.io/r/ClearcodeHQ/pytest-postgresql?branch=v1.4.1
.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-postgresql/badge.png?branch=v2.0.0
:target: https://coveralls.io/r/ClearcodeHQ/pytest-postgresql?branch=v2.0.0
:alt: Coverage Status

.. image:: https://requires.io/github/ClearcodeHQ/pytest-postgresql/requirements.svg?tag=v1.4.1
:target: https://requires.io/github/ClearcodeHQ/pytest-postgresql/requirements/?tag=v1.4.1
.. image:: https://requires.io/github/ClearcodeHQ/pytest-postgresql/requirements.svg?tag=v2.0.0
:target: https://requires.io/github/ClearcodeHQ/pytest-postgresql/requirements/?tag=v2.0.0
:alt: Requirements Status

What is this?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def read(fname):

setup(
name='pytest-postgresql',
version='1.4.1',
version='2.0.0',
description='Postgresql fixtures and fixture factories for Pytest.',
long_description=(
read('README.rst') + '\n\n' + read('CHANGES.rst')
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_postgresql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
else:
psycopg2cffi.compat.register()

__version__ = '1.4.1'
__version__ = '2.0.0'

0 comments on commit cb870c2

Please sign in to comment.