Skip to content

Commit dcbc533

Browse files
authored
Merge pull request #9 from tilezen/zerebubuth/changelog
Add changelog.
2 parents 22a6431 + a38a1e5 commit dcbc533

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
v1.0.0
2+
------
3+
4+
* Initial release.

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.0.0

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
from distutils.extension import Extension
33
import os.path
44

5+
version_path = os.path.join(os.path.dirname(__file__), 'VERSION')
6+
with open(version_path) as fh:
7+
version = fh.read().strip()
8+
59
extension = Extension(
610
"coanacatl",
711
["coanacatl/coanacatl.cpp"],
@@ -18,6 +22,7 @@
1822

1923
setup(
2024
name="coanacatl",
25+
version=version,
2126
ext_modules=[extension],
2227
test_suite='test',
2328
)

0 commit comments

Comments
 (0)