Skip to content

Commit

Permalink
Update to version 23.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sebasj13 committed Mar 25, 2023
1 parent 6d03243 commit ae8f6d7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ keywords:
- GUI
- Python
license: MIT
version: 23.0.1
version: 23.0.2
date-released: '2023-03-21'
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="topasgraphsim",
version="23.0.1",
version="23.0.2",
author="Sebastian Schäfer",
author_email="[email protected]",
description="GUI to analyze the results of a Monte-Carlo radiation simulation",
Expand All @@ -20,6 +20,7 @@
"Operating System :: OS Independent",
],
install_requires=[
"customtkinter",
"requests",
"numpy",
"scipy",
Expand Down
2 changes: 1 addition & 1 deletion topasgraphsim/src/classes/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class CheckForUpdates:
def __init__(self):

currentVersion = "23.0.1"
currentVersion = "23.0.2"
try:
newestVersion = requests.get(
"https://api.github.com/repos/sebasj13/topasgraphsim/releases/latest"
Expand Down
2 changes: 1 addition & 1 deletion topasgraphsim/topasgraphsim.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self):
super().__init__()

self.appname = "TopasGraphSim"
self.version = "23.0.1"
self.version = "23.0.2"
self.author = "Sebastian Schäfer"
self.affiliation = "UK Halle\nMLU Halle-Wittenberg\nUK Hamburg-Eppendorf"
self.title(f"{self.appname} - v.{self.version}")
Expand Down

0 comments on commit ae8f6d7

Please sign in to comment.