From 9cf266f2c0a561597b4ef166900dd1b6bc1e7bdd Mon Sep 17 00:00:00 2001 From: Stef Smeets Date: Fri, 22 Feb 2019 11:18:26 +0100 Subject: [PATCH] Bump version --- instamatic/version.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/instamatic/version.py b/instamatic/version.py index 87ffa185..7bec78fb 100644 --- a/instamatic/version.py +++ b/instamatic/version.py @@ -7,13 +7,14 @@ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -VERSION = (1, 0, 0) +tag = "dev" +VERSION = (1, 1, 0, tag) -__version__ = "{}.{}.{}".format(*VERSION) +__version__ = "{}.{}.{}{}".format(*VERSION, tag) __title__ = "instamatic" __long_title__ = f"{__title__} v{__version__}" __author__ = "Stef Smeets" -__author_email__ = "stef.smeets@tudelft.nl" +__author_email__ = "s.smeets@tudelft.nl" __description__ = "Python program to collect serial and rotation electron diffraction data" __license__ = "GPLv3" __url__ = "http://github.com/stefsmeets/instamatic"