Skip to content

Commit c03af67

Browse files
committed
added version file and incremented version to 0.3.0
1 parent f64f1ca commit c03af67

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

construct_typed/version.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
version = (0, 3, 0)
2+
version_string = "0.3.0"

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
#!/usr/bin/env python
22
from setuptools import setup
33

4+
exec(open("./construct_typed/version.py").read())
5+
46
setup(
57
name="construct-typing",
6-
version="0.2.0",
8+
version=version_string,
79
packages=["construct-stubs", "construct_typed"],
810
package_data={
911
"construct-stubs": ["*.pyi", "lib/*.pyi"],

0 commit comments

Comments
 (0)