diff --git a/CHANGELOG.md b/CHANGELOG.md index 6af1d4d..757f2eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ # Summary * [**Unreleased**](#unreleased) +* [**Release 2025-08-18 v0.8a6**](#release-2025-08-18-v08a6) Added to documentation * [**Release 2025-08-09 v0.8a5**](#release-2025-08-09-v08a5) Creating Microsoft Word docx files is now optional * [**Release 2025-07-15 v0.8a4**](#release-2025-07-15-v08a4) Made options and output more concise * **Release 2025-07-04 v0.8.3** Clean README @@ -37,9 +38,11 @@ ## Unreleased -## Release 2025-08-09 v0.8a5 +## Release 2025-08-18 v0.8a6 * CHANGED basic usage documentation to add a tip * CHANGED Simplify basic usage by docs by moving selected basic usage docs to advanced docs + +## Release 2025-08-09 v0.8a5 * CHANGED Creating Microsoft Word docx files is now optional: * Most researchers may not want/need to create a Microsoft docx file * Makes installation easier: diff --git a/pyproject.toml b/pyproject.toml index 5488029..baddf23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "timetracker-csv" description = "Pandas-friendly time tracking from the CLI" -version = '0.8.5' +version = '0.8.6' license = "AGPL-3.0-or-later" authors = [ {name = 'DV Klopfenstein, PhD', email = 'dvklopfenstein@protonmail.com'}, diff --git a/timetracker/__init__.py b/timetracker/__init__.py index 6c8f041..c120169 100644 --- a/timetracker/__init__.py +++ b/timetracker/__init__.py @@ -2,6 +2,6 @@ __copyright__ = 'Copyright (C) 2025-present, DV Klopfenstein, PhD. All rights reserved' __author__ = 'DV Klopfenstein, PhD' -__version__ = '0.8.5' +__version__ = '0.8.6' # Copyright (C) 2025-present, DV Klopfenstein, PhD. All rights reserved