From c80b76a930cf7ca366640d126dcbc6e29d978e91 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 12 Jul 2020 23:04:07 +0200 Subject: [PATCH] Version 2.4.0 As the list of changes has gotten large enough to warrant a minor version bunch --- Utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils.py b/Utils.py index 6b9c9074..8c90c9fe 100644 --- a/Utils.py +++ b/Utils.py @@ -6,7 +6,7 @@ def tuplize_version(version: str) -> typing.Tuple[int, ...]: return tuple(int(piece, 10) for piece in version.split(".")) -__version__ = "2.3.4" +__version__ = "2.4.0" _version_tuple = tuplize_version(__version__) import os