diff --git a/myob/__init__.py b/myob/__init__.py index 38c8cb4..a9cc758 100644 --- a/myob/__init__.py +++ b/myob/__init__.py @@ -1,5 +1,5 @@ from .api import Myob # noqa -VERSION = (1, 2, 18) +VERSION = (1, 2, 19) __version__ = '.'.join(str(x) for x in VERSION[:(2 if VERSION[2] == 0 else 3)]) # noqa