Skip to content

Commit 6f9f6da

Browse files
committed
mark release version 1.7.0
1 parent c2a5407 commit 6f9f6da

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
CHANGELOG
22
============
33

4+
1.7.0 - May 17, 2021
5+
--------------------
6+
* Add DOI to the README #128
7+
* Add various missing attributes for co-op replays #129
8+
* Add support for python 3.8, 3.9 #132 #136
9+
* Fix owner on an event with no unit #133
10+
* Add support for ResourceTradeEvent #135
11+
* Fix depot URL template #139
12+
413
1.6.0 - July 30, 2020
514
---------------------
615
* Add support for protocol 80949 (StarCraft 5.0) #122

sc2reader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"""
2121
from __future__ import absolute_import, print_function, unicode_literals, division
2222

23-
__version__ = "1.6.0"
23+
__version__ = "1.7.0"
2424

2525
import os
2626
import sys

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
setuptools.setup(
55
license="MIT",
66
name="sc2reader",
7-
version="1.6.0",
7+
version="1.7.0",
88
keywords=["starcraft 2", "sc2", "replay", "parser"],
99
description="Utility for parsing Starcraft II replay files",
1010
long_description=open("README.rst").read() + "\n\n" + open("CHANGELOG.rst").read(),

0 commit comments

Comments
 (0)