diff --git a/HISTORY.rst b/HISTORY.rst index ac2ad36..e5cc90b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,12 +5,14 @@ History ======= ****************** -1.0.0 (unreleased) +1.0.0 (2019-08-08) ****************** * Add support for python 3.7 * Add support for epics * Add support for additional attributes from Taiga 3.2/3.3 +* Improve models +* Improve pagination support * Fix and enforce code style ****************** diff --git a/taiga/__init__.py b/taiga/__init__.py index 90266ca..90fd523 100644 --- a/taiga/__init__.py +++ b/taiga/__init__.py @@ -5,7 +5,7 @@ """ Taiga Python API library """ -__version__ = '1.0.0b1' +__version__ = '1.0.0' __author__ = 'Nephila' __license__ = 'MIT' __all__ = ['TaigaAPI']