Skip to content

Commit

Permalink
Update version to 3.0.0 (#70)
Browse files Browse the repository at this point in the history
* setup.py: updating to version 3.0.0
* docs/conf.py: updating to version 3.0.0
  • Loading branch information
aaron-ni authored Jun 22, 2023
1 parent bd4d5a9 commit f851287
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
author = "National Instruments"

# The short X.Y version
version = "0.9"
version = "3.0"
# The full version, including alpha/beta/rc tags
release = "0.9.0"
release = "3.0.0"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_version(name):
script_dir = os.path.dirname(os.path.realpath(__file__))
script_dir = os.path.join(script_dir, name)
if not os.path.exists(os.path.join(script_dir, 'VERSION')):
version = '2.1.0'
version = '3.0.0'
else:
with open(os.path.join(script_dir, "VERSION"), "r") as version_file:
version = version_file.read().rstrip()
Expand Down

0 comments on commit f851287

Please sign in to comment.