diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bb518cc3..ba71454a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ CHANGELOG ============ +1.8.0 - May 4, 2022 +------------------- +* Fix various typos in docs #146 +* Fix various URLs for blizzard resources #151 #154 #156 +* Fix Ravager data #161 +* Add CommandManagerStateEvent #162 +* Fix participant state from gameheart #171 + + 1.7.0 - May 17, 2021 -------------------- * Add DOI to the README #128 diff --git a/sc2reader/__init__.py b/sc2reader/__init__.py index 4d601ca8..419f47b5 100644 --- a/sc2reader/__init__.py +++ b/sc2reader/__init__.py @@ -20,7 +20,7 @@ """ from __future__ import absolute_import, print_function, unicode_literals, division -__version__ = "1.7.0" +__version__ = "1.8.0" import os import sys diff --git a/setup.py b/setup.py index 0ce5ce32..f0f57022 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setuptools.setup( license="MIT", name="sc2reader", - version="1.7.0", + version="1.8.0", keywords=["starcraft 2", "sc2", "replay", "parser"], description="Utility for parsing Starcraft II replay files", long_description=open("README.rst").read() + "\n\n" + open("CHANGELOG.rst").read(),