Skip to content

Commit

Permalink
Bump to v1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sryu1 committed Feb 4, 2023
1 parent 08ca6e3 commit a34fd58
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Bot-CLI.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def update():
ghrapi = requests.get(
"https://api.github.com/repos/sryu1/YouTube_View_Bot/releases/latest"
)
current_version = "v1.2.4"
current_version = "v1.2.5"
latest_version = str(ghrapi.json()["name"])
if current_version < latest_version:
print(
Expand Down
2 changes: 1 addition & 1 deletion Bot.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def main():
ghrapi = requests.get(
"https://api.github.com/repos/sryu1/YouTube_View_Bot/releases/latest"
)
current_version = "v1.2.4"
current_version = "v1.2.5"
latest_version = str(ghrapi.json()["name"])
if current_version < latest_version:
update_window = customtkinter.CTkToplevel()
Expand Down
2 changes: 1 addition & 1 deletion Stream Bot.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def main():
ghrapi = requests.get(
"https://api.github.com/repos/sryu1/YouTube_View_Bot/releases/latest"
)
current_version = "v1.2.4"
current_version = "v1.2.5"
latest_version = str(ghrapi.json()["name"])
if current_version < latest_version:
update_window = customtkinter.CTkToplevel()
Expand Down

0 comments on commit a34fd58

Please sign in to comment.