From 28b87a47fbc2162d231136cac843930b2d01fcac Mon Sep 17 00:00:00 2001 From: z411 Date: Thu, 17 Aug 2023 17:11:53 -0400 Subject: [PATCH] Bump version and release year --- pyproject.toml | 4 ++-- trackma/ui/cli.py | 2 +- trackma/utils.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a5bc2b7b..9c98389a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [tool.poetry] name = "trackma" -version = "0.8.5" +version = "0.8.6" description = "Open multi-site list manager" -authors = ["z411 "] +authors = ["z411 "] license = "GPL-3.0-or-later" readme = "README.md" homepage = "https://z411.github.io/trackma/" diff --git a/trackma/ui/cli.py b/trackma/ui/cli.py index db7e91a8..a8128dbb 100644 --- a/trackma/ui/cli.py +++ b/trackma/ui/cli.py @@ -89,7 +89,7 @@ def __init__(self, account_num=None, debug=False, interactive=True): super().__init__() if interactive: - print('Trackma v'+utils.VERSION+' Copyright (C) 2012-2020 z411') + print('Trackma v'+utils.VERSION+' Copyright (C) 2012-2023 z411') print( 'This program comes with ABSOLUTELY NO WARRANTY; for details type `about\'') print('This is free software, and you are welcome to redistribute it') diff --git a/trackma/utils.py b/trackma/utils.py index 8a111a03..e5623156 100644 --- a/trackma/utils.py +++ b/trackma/utils.py @@ -30,7 +30,7 @@ import uuid from enum import Enum, auto -VERSION = '0.8.5' +VERSION = '0.8.6' DATADIR = os.path.dirname(__file__) + '/data'