Skip to content

Commit f851287

Browse files
authored
Update version to 3.0.0 (#70)
* setup.py: updating to version 3.0.0 * docs/conf.py: updating to version 3.0.0
1 parent bd4d5a9 commit f851287

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
author = "National Instruments"
2626

2727
# The short X.Y version
28-
version = "0.9"
28+
version = "3.0"
2929
# The full version, including alpha/beta/rc tags
30-
release = "0.9.0"
30+
release = "3.0.0"
3131

3232
# -- General configuration ---------------------------------------------------
3333

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_version(name):
1616
script_dir = os.path.dirname(os.path.realpath(__file__))
1717
script_dir = os.path.join(script_dir, name)
1818
if not os.path.exists(os.path.join(script_dir, 'VERSION')):
19-
version = '2.1.0'
19+
version = '3.0.0'
2020
else:
2121
with open(os.path.join(script_dir, "VERSION"), "r") as version_file:
2222
version = version_file.read().rstrip()

0 commit comments

Comments
 (0)