From c4645b3ae051ea8fd1c130dd4e1d55567006dea2 Mon Sep 17 00:00:00 2001 From: Redmar van den Berg Date: Wed, 22 Sep 2021 10:45:04 +0200 Subject: [PATCH] Bump version number to 4.0.0 --- Changelog | 4 ++++ fuma/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 2529f48..8705f45 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,7 @@ +2021-09-22 Redmar van den Berg + + * Version 4.0.0: Update FuMa to Python3 (see issue #46) + 2021-08-11 Redmar van den Berg * Version 3.0.7: HOTFIX for issue #43 - Thanks @Redmar-van-den-Berg diff --git a/fuma/__init__.py b/fuma/__init__.py index fb1ca68..385ddc9 100644 --- a/fuma/__init__.py +++ b/fuma/__init__.py @@ -21,7 +21,7 @@ """ -__version_info__ = ('3', '0', '8') +__version_info__ = ('4', '0', '0') __version__ = '.'.join(__version_info__) if (len(__version_info__) == 3) else '.'.join(__version_info__[0:3])+"-"+__version_info__[3] __author__ = 'Youri Hoogstrate' __homepage__ = 'https://github.com/yhoogstrate/fuma'