Skip to content

Commit 10cba59

Browse files
committed
Fix version
1 parent c03c8c8 commit 10cba59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/utils/iteration_control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def continue_itr(self, distortion: float):
2727

2828
# TODO: There is no way currently we go back
2929
# to acceptable distortions
30-
if VERSION == '0.0.1-alpha':
30+
if VERSION == '0.0.3-alpha':
3131
if distortion > self.max_dist:
3232
print("{0} Finished iteration with distortion={1} "
3333
"in [{2}, {3}]. Number of iterations={4}".format(INFO, distortion, self.min_dist,

src/utils/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VERSION_MAJOR = 0
22
VERSION_MINOR = 0
3-
VERSION_PATCH = 1
3+
VERSION_PATCH = 3
44
VERSION_RELEASE = 'alpha'
55
VERSION = str(VERSION_MAJOR) + "." + str(VERSION_MINOR) + "." + str(VERSION_PATCH) + "-" + VERSION_RELEASE

0 commit comments

Comments
 (0)