diff --git a/CHANGES.rst b/CHANGES.rst index a9664059e..71c95a21f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ======= +0.8.2 (2018-02-28) +------------------ +- Fixed broken HTTP transports due to missing colorama import. + + 0.8.1 (2018-02-27) ------------------ - Correction for README in 0.8.X release. diff --git a/tomodachi/__version__.py b/tomodachi/__version__.py index af0965c52..1aa308ce6 100644 --- a/tomodachi/__version__.py +++ b/tomodachi/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 8, 1) +__version_info__ = (0, 8, 2) __version__ = ''.join(['.{}'.format(str(n)) if type(n) is int else str(n) for n in __version_info__]).replace('.', '', 1 if type(__version_info__[0]) is int else 0) if __name__ == "__main__":