Skip to content

Commit

Permalink
change version
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-develop committed Mar 19, 2022
1 parent 353ab52 commit 5bc3d3f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

with open("version.json") as ver_json:
ver_json_loaded = json.load(ver_json)
version = ver_json_loaded.get("version")
version = ver_json_loaded.get("noug_version")

if path == "<stdin>":
print(f"Welcome to Nougaro {version}! Contribute : https://github.com/jd-develop/nougaro/")
Expand Down
2 changes: 1 addition & 1 deletion src/nougaro.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

with open("version.json") as ver_json:
ver_json_loaded = json.load(ver_json)
version_ = ver_json_loaded.get("version")
version_ = ver_json_loaded.get("noug_version")


# ##########
Expand Down
3 changes: 2 additions & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"version": "prototype-1"
"noug_version": "prototype-2",
"inherit": true
}

0 comments on commit 5bc3d3f

Please sign in to comment.