From 6b0409eb919b68c8c0b834d17fd22286de4d4c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20=C5=9Aliwi=C5=84ski?= Date: Tue, 21 Jul 2020 09:08:36 +0200 Subject: [PATCH] "Release 2.0.3" --- .bumpversion.cfg | 2 +- CHANGES.rst | 2 +- README.rst | 12 ++++++------ setup.py | 2 +- src/pytest_mysql/__init__.py | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 20a408b4..fd002c8e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.2 +current_version = 2.0.3 commit = True tag = True message = "Release {new_version}" diff --git a/CHANGES.rst b/CHANGES.rst index 4bbc1f89..07b7bd28 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ CHANGELOG ========= -unreleased +2.0.3 ------- - [enhancement] Do not assume that mysql executables are in /usr/bin diff --git a/README.rst b/README.rst index b3099870..3bf0c207 100644 --- a/README.rst +++ b/README.rst @@ -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? @@ -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 diff --git a/setup.py b/setup.py index dc4668ce..a89f021e 100644 --- a/setup.py +++ b/setup.py @@ -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') diff --git a/src/pytest_mysql/__init__.py b/src/pytest_mysql/__init__.py index 828a746d..87a9a81c 100644 --- a/src/pytest_mysql/__init__.py +++ b/src/pytest_mysql/__init__.py @@ -17,4 +17,4 @@ # You should have received a copy of the GNU Lesser General Public License # along with pytest-mysql. If not, see . """Main module for pytest-mysql.""" -__version__ = '2.0.2' +__version__ = '2.0.3'