Skip to content

Commit 9e63bbb

Browse files
author
Carlo Smouter
committed
Bump version to 1.0
1 parent 77dc530 commit 9e63bbb

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: tests devinstall docs clean
1+
.PHONY: tests devinstall docs clean build
22

33

44
tests:
@@ -13,3 +13,6 @@ docs: clean
1313
sphinx-apidoc --force -o docs/modules/ wowapi
1414
$(MAKE) -C docs clean
1515
$(MAKE) -C docs html
16+
17+
build:
18+
python setup.py sdist bdist_wheel

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '0.6'
54+
version = '1.0'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.6'
56+
release = '1.0'
5757

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44

55

6-
__version__ = '0.6'
6+
__version__ = '1.0'
77

88

99
def read(*parts):

0 commit comments

Comments
 (0)