# -*- coding: utf-8 -*- """ # Simple password manager # Copyright (c) 2011-2024 Michael Büsch # Licensed under the GNU/GPL version 2 or later. """ __all__ = [ "VERSION_MAJOR", "VERSION_MINOR", "VERSION_EXTRA", "VERSION_STRING", ] VERSION_MAJOR = 2 VERSION_MINOR = 11 VERSION_EXTRA = "" VERSION_STRING = "%d.%d%s" % (VERSION_MAJOR, VERSION_MINOR, VERSION_EXTRA)