Skip to content

Commit

Permalink
fix: v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
filipporomani committed May 28, 2023
1 parent 5dec534 commit 64a9e0e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.9.6
3.0.0
2 changes: 1 addition & 1 deletion constants.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# internal use only

VERSION = "2.9.6"
VERSION = "3.0.0"
7 changes: 6 additions & 1 deletion pre_dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@ def update_version():
f = f.read()

with open("./constants.py", "w+") as f1:
f1.write(f)
f1.write(f)

from constants import VERSION

with open("./.version", "w+") as f2:
f2.write(VERSION)

0 comments on commit 64a9e0e

Please sign in to comment.