Skip to content

Commit 3207058

Browse files
authored
CM-15776 - update version to 0.1.6 (#29)
update version to 0.1.6
1 parent 0e7aafa commit 3207058

File tree

2 files changed

+2
-18
lines changed

2 files changed

+2
-18
lines changed

cli/__init__.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
1-
from pathlib import Path
2-
3-
4-
def get_version():
5-
this_directory = Path(__file__).parent
6-
root_project_directory = Path(this_directory).parent
7-
return (root_project_directory / "VERSION.txt").read_text(encoding='utf-8')
8-
9-
10-
__version__ = get_version()
1+
__version__ = "0.1.6"

cyclient/__init__.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
1-
from pathlib import Path
21
from .config import logger
32

3+
__version__ = "0.1.6"
44

5-
def get_version():
6-
this_directory = Path(__file__).parent
7-
root_project_directory = Path(this_directory).parent
8-
return (root_project_directory / "VERSION.txt").read_text(encoding='utf-8')
9-
10-
11-
__version__ = get_version()
125

136
__all__ = [
147
"logger",

0 commit comments

Comments
 (0)