Skip to content

Commit

Permalink
update: bump version number for recent patch
Browse files Browse the repository at this point in the history
  • Loading branch information
mufasa159 committed Aug 29, 2024
1 parent fa260f4 commit 40630fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/default/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0",
"version": "1.0.1",
"csv_file_path": "default/timesheet.csv",
"projects": [
"Personal",
Expand Down
4 changes: 2 additions & 2 deletions src/project_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ProjectManager:
def __init__(self, settings_file=settings_dir):
self.settings_file = settings_file
self.settings = self.load_settings()
self.version = self.settings.get('version', '1.0.0')
self.version = self.settings.get('version', '1.0.1')
self.projects = self.settings.get('projects', [])
self.csv_file_path = self.settings.get('csv_file_path', timesheet_dir)

Expand All @@ -31,7 +31,7 @@ def load_settings(self):
with open(self.settings_file, 'r') as file:
return json.load(file)
return {
"version": "1.0.0",
"version": "1.0.1",
"projects": [],
"csv_file_path": timesheet_dir
}
Expand Down

0 comments on commit 40630fe

Please sign in to comment.