Skip to content

Commit 37b3924

Browse files
committed
Bump to 0.6.3.
1 parent f65122a commit 37b3924

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.rst

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

4+
0.6.3 - September 15th 2013
5+
---------------------------
6+
7+
* Properly mark hallucinated units.
8+
49
0.6.2 - September 5th 2013
510
--------------------------
611
* Fix rare bug where TargetedAbility events could overwrite unit types.

docs/source/conf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# serve to show the default.
1313

1414
import sys, os
15+
import sc2reader
1516

1617
autodoc_member_order = "bysource"
1718

@@ -50,10 +51,10 @@
5051
# built documents.
5152
#
5253
# The short X.Y version.
53-
version = '0.6.2'
54+
version = sc2reader.__version__
5455

5556
# The full version, including alpha/beta/rc tags.
56-
release = '0.6.2'
57+
release = sc2reader.__version__
5758

5859
# The language for content autogenerated by Sphinx. Refer to documentation
5960
# for a list of supported languages.

sc2reader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
from __future__ import absolute_import, print_function, unicode_literals, division
33

4-
__version__ = "0.6.1"
4+
__version__ = "0.6.3"
55

66
import os
77
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='0.6.2',
7+
version='0.6.3',
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)