From 22019f16ae42b09442f3a70cb973c9d4f28be908 Mon Sep 17 00:00:00 2001 From: Ram Rachum Date: Mon, 20 May 2019 13:53:51 +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 749599d..aaeb877 100644 --- a/pysnooper/__init__.py +++ b/pysnooper/__init__.py @@ -24,7 +24,7 @@ import collections __VersionInfo = collections.namedtuple('VersionInfo', ('major', 'minor', 'micro')) -__version__ = '0.0.38' +__version__ = '0.0.39' __version_info__ = __VersionInfo(*(map(int, __version__.split('.')))) del collections, __VersionInfo # Avoid polluting the namespace