From f07083e7cc8234bfc232c04f5a177aecec7ad805 Mon Sep 17 00:00:00 2001 From: Josh Peak Date: Fri, 20 Dec 2019 12:11:01 +1100 Subject: [PATCH] Fix Logo alignment for PYPI description --- README.rst | 1 - vcr/__init__.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.rst b/README.rst index e1c89b2..f4c3b14 100644 --- a/README.rst +++ b/README.rst @@ -10,7 +10,6 @@ VCR.py 📼 .. image:: https://vcrpy.readthedocs.io/en/latest/_images/vcr.svg :alt: vcr.py logo - :align: right This is a Python version of `Ruby's VCR diff --git a/vcr/__init__.py b/vcr/__init__.py index dc9ad51..02b6fb1 100644 --- a/vcr/__init__.py +++ b/vcr/__init__.py @@ -2,7 +2,7 @@ import logging from .config import VCR from logging import NullHandler -__version__ = "4.0.0" +__version__ = "4.0.1" logging.getLogger(__name__).addHandler(NullHandler())