From cee2aa9bb2910732f283ff9ac69e870a94024770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=BCndler?= Date: Thu, 23 Feb 2023 21:40:45 +0100 Subject: [PATCH] Bump version - allow union type access - drastically reduce script size - fix minor type inference issues --- eopsin/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eopsin/__init__.py b/eopsin/__init__.py index c2094c80..3b253958 100644 --- a/eopsin/__init__.py +++ b/eopsin/__init__.py @@ -8,7 +8,7 @@ except ImportError as e: warnings.warn(ImportWarning(e)) -VERSION = (0, 7, 14) +VERSION = (0, 8, 0) __version__ = ".".join([str(i) for i in VERSION]) __author__ = "nielstron"