diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dd9fbf0..f4ac837 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ CHANGELOG ========= +2.0.0 +----- +- ``Dhis`` class was renamed to ``Api`` +- ``APIException`` was renamed to ``RequestException`` +- ``generate_uids`` was completely removed. Use ``generate_uid`` for a single UID, not requiring an existing ``Api`` instance. + 1.8.0 ----- - allow ``delete()`` to have payload diff --git a/dhis2/__version__.py b/dhis2/__version__.py index 5d93de6..78a45a5 100644 --- a/dhis2/__version__.py +++ b/dhis2/__version__.py @@ -1,7 +1,7 @@ __title__ = 'dhis2.py' __description__ = 'Python wrapper for DHIS2' __url__ = 'https://github.com/davidhuser/dhis2.py' -__version__ = '1.8.0' +__version__ = '2.0.0' __author__ = 'David Huser' __author_email__ = 'dhuser@baosystems.com' __license__ = 'MIT'