Skip to content

Commit fbda9eb

Browse files
committed
New v0.6.0 release.
1 parent 768792d commit fbda9eb

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
include LICENSE.txt
22
include CONTRIBUTORS.txt
3+
include CONTRIBUTING.md
4+
include STYLE_GUIDE.rst
35
include README.rst
46
include CHANGELOG.rst
57
recursive-include sc2reader *.csv *.json

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = '0.5.1'
53+
version = '0.6.0'
5454

5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.5.0'
56+
release = '0.6.0'
5757

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

sc2reader/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# -*- coding: utf-8 -*-
22
from __future__ import absolute_import, print_function, unicode_literals, division
33

4+
__version__ = "0.6.0"
5+
46
import os
57
import sys
68

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.5.1',
7+
version='0.6.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)