From dc04ab1626e93041645423d368bfdcae550db287 Mon Sep 17 00:00:00 2001 From: Ram Rachum Date: Mon, 14 Sep 2020 12:45:52 +0300 Subject: [PATCH] Bump version to 0.4.2 --- pysnooper/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysnooper/__init__.py b/pysnooper/__init__.py index b3f4528..d5ea0f6 100644 --- a/pysnooper/__init__.py +++ b/pysnooper/__init__.py @@ -24,7 +24,7 @@ def your_function(x): __VersionInfo = collections.namedtuple('VersionInfo', ('major', 'minor', 'micro')) -__version__ = '0.4.1' +__version__ = '0.4.2' __version_info__ = __VersionInfo(*(map(int, __version__.split('.')))) del collections, __VersionInfo # Avoid polluting the namespace