Skip to content

Commit

Permalink
"Release 2.0.3"
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Jul 21, 2020
1 parent 40381c8 commit 6b0409e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 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 = 2.0.2
current_version = 2.0.3
commit = True
tag = True
message = "Release {new_version}"
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CHANGELOG
=========

unreleased
2.0.3
-------

- [enhancement] Do not assume that mysql executables are in /usr/bin
Expand Down
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ pytest-mysql
Package status
--------------

.. image:: https://travis-ci.org/ClearcodeHQ/pytest-mysql.svg?branch=v2.0.2
.. image:: https://travis-ci.org/ClearcodeHQ/pytest-mysql.svg?branch=v2.0.3
:target: https://travis-ci.org/ClearcodeHQ/pytest-mysql
:alt: Tests

.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-mysql/badge.png?branch=v2.0.2
:target: https://coveralls.io/r/ClearcodeHQ/pytest-mysql?branch=v2.0.2
.. image:: https://coveralls.io/repos/ClearcodeHQ/pytest-mysql/badge.png?branch=v2.0.3
:target: https://coveralls.io/r/ClearcodeHQ/pytest-mysql?branch=v2.0.3
:alt: Coverage Status

.. image:: https://requires.io/github/ClearcodeHQ/pytest-mysql/requirements.svg?tag=v2.0.2
:target: https://requires.io/github/ClearcodeHQ/pytest-mysql/requirements/?tag=v2.0.2
.. image:: https://requires.io/github/ClearcodeHQ/pytest-mysql/requirements.svg?tag=v2.0.3
:target: https://requires.io/github/ClearcodeHQ/pytest-mysql/requirements/?tag=v2.0.3
:alt: Requirements Status

What is this?
Expand All @@ -44,7 +44,7 @@ It allows you to specify fixtures for MySQL process and client.

.. warning::

Only MySQL 5.7.6 and up are supported. For older versions, please use pytest-mysql 2.0.2
Only MySQL 5.7.6 and up are supported. For older versions, please use pytest-mysql 2.0.3
Although Pull Request to add back support for older MySQL versions are welcome.

How to use
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def read(fname):

setup(
name='pytest-mysql',
version='2.0.2',
version='2.0.3',
description='MySQL process and client fixtures for pytest',
long_description=(
read('README.rst') + '\n\n' + read('CHANGES.rst')
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_mysql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# You should have received a copy of the GNU Lesser General Public License
# along with pytest-mysql. If not, see <http://www.gnu.org/licenses/>.
"""Main module for pytest-mysql."""
__version__ = '2.0.2'
__version__ = '2.0.3'

0 comments on commit 6b0409e

Please sign in to comment.