From 3b8a8787604489e13706e90605ab5e176fef117d Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Mon, 28 Dec 2020 20:46:52 +0100 Subject: [PATCH] prepare release --- Changes | 10 ++++++++++ lib/App/TimeTracker.pm | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 161c30c..e74b3c1 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,15 @@ Revision history for App::TimeTracker +3.006 2020-12-28T20:34:29 + - test for global report (list all) and report filtered by project (Thomas Klausner) + - Add more details to init command documentation (Paul Cochrane) + - Extract duplicate error messages into Constants package (Paul Cochrane) + - Add init command hint to start command help message (Paul Cochrane) + - Test current start command help output without project (Paul Cochrane) + - Add an initial test for report command (Paul Cochrane) + - add --output opt to "report" command to show different fields in the report table (Thomas Klausner) + + 3.005 2020-11-22T17:17:58 - Move docs to saner placed (Paul Cochrane) - Update cpanm installation docs (Paul Cochrane) diff --git a/lib/App/TimeTracker.pm b/lib/App/TimeTracker.pm index 492b4b2..6976957 100644 --- a/lib/App/TimeTracker.pm +++ b/lib/App/TimeTracker.pm @@ -3,7 +3,7 @@ use strict; use warnings; use 5.010; -our $VERSION = "3.005"; +our $VERSION = "3.006"; # ABSTRACT: time tracking for impatient and lazy command line lovers use App::TimeTracker::Data::Task;