From fa1b5d6172242d57a408a5f011dd991d878d0ebe Mon Sep 17 00:00:00 2001 From: Ram Rachum Date: Sat, 10 Aug 2019 14:17:46 +0300 Subject: [PATCH] Bump version --- pysnooper/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysnooper/__init__.py b/pysnooper/__init__.py index a8e8743..b77a6a5 100644 --- a/pysnooper/__init__.py +++ b/pysnooper/__init__.py @@ -24,7 +24,7 @@ import collections __VersionInfo = collections.namedtuple('VersionInfo', ('major', 'minor', 'micro')) -__version__ = '0.2.4' +__version__ = '0.2.5' __version_info__ = __VersionInfo(*(map(int, __version__.split('.')))) del collections, __VersionInfo # Avoid polluting the namespace