From 57472b4677b6c041647950f28f2d5750c38326c6 Mon Sep 17 00:00:00 2001 From: Ram Rachum Date: Mon, 9 Sep 2024 10:41:35 +0300 Subject: [PATCH] Bump version to 1.2.1 --- pysnooper/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysnooper/__init__.py b/pysnooper/__init__.py index 898a531..fbe2500 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__ = '1.2.0' +__version__ = '1.2.1' __version_info__ = __VersionInfo(*(map(int, __version__.split('.')))) del collections, __VersionInfo # Avoid polluting the namespace