[Bps-public-commit] rt-extension-timetracking branch master updated. 0.22

BPS Git Server git at git.bestpractical.com
Tue Mar 8 20:33:25 UTC 2022


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "rt-extension-timetracking".

The branch, master has been updated
       via  b13707d45c1c129daf0d09c98b967484dabd8a97 (commit)
       via  bbb1ef8f3dd6f4bf690409ebd6402bff0e6a1565 (commit)
      from  393992f4ff5a3a706d631f406f6c1be17967bf37 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b13707d45c1c129daf0d09c98b967484dabd8a97
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Wed Mar 9 04:29:29 2022 +0800

    Prep 0.22

diff --git a/Changes b/Changes
index 7e1d120..1234a70 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for RT-Extension-TimeTracking
 
+0.22 2022-03-08
+ - Confirm $Object is defined before checking type
+
 0.21 2020-08-13
  - Add "Time Search" page
 
diff --git a/META.yml b/META.yml
index 5f59c9b..86dfaf1 100644
--- a/META.yml
+++ b/META.yml
@@ -26,6 +26,6 @@ requires:
 resources:
   license: http://opensource.org/licenses/gpl-license.php
   repository: https://github.com/bestpractical/rt-extension-timetracking
-version: '0.21'
+version: '0.22'
 x_module_install_rtx_version: '0.43'
 x_requires_rt: 5.0.0
diff --git a/lib/RT/Extension/TimeTracking.pm b/lib/RT/Extension/TimeTracking.pm
index a34ba2e..429da6a 100644
--- a/lib/RT/Extension/TimeTracking.pm
+++ b/lib/RT/Extension/TimeTracking.pm
@@ -2,7 +2,7 @@ use strict;
 use warnings;
 package RT::Extension::TimeTracking;
 
-our $VERSION = '0.21';
+our $VERSION = '0.22';
 
 RT->AddStyleSheets("time_tracking.css");
 RT->AddJavaScript("time_tracking.js");

commit bbb1ef8f3dd6f4bf690409ebd6402bff0e6a1565
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Wed Mar 9 04:28:04 2022 +0800

    Update M:I:RTx to 0.43

diff --git a/META.yml b/META.yml
index 9830380..5f59c9b 100644
--- a/META.yml
+++ b/META.yml
@@ -27,5 +27,5 @@ resources:
   license: http://opensource.org/licenses/gpl-license.php
   repository: https://github.com/bestpractical/rt-extension-timetracking
 version: '0.21'
-x_module_install_rtx_version: '0.42'
+x_module_install_rtx_version: '0.43'
 x_requires_rt: 5.0.0
diff --git a/inc/Module/Install/RTx.pm b/inc/Module/Install/RTx.pm
index 2dd9489..2889ece 100644
--- a/inc/Module/Install/RTx.pm
+++ b/inc/Module/Install/RTx.pm
@@ -9,7 +9,7 @@ no warnings 'once';
 use Term::ANSIColor qw(:constants);
 use Module::Install::Base;
 use base 'Module::Install::Base';
-our $VERSION = '0.42';
+our $VERSION = '0.43';
 
 use FindBin;
 use File::Glob     ();
@@ -134,7 +134,7 @@ lexicons ::
     if( $extra_args->{'remove_files'} ){
         $self->include('Module::Install::RTx::Remove');
         our @remove_files;
-        eval { require "etc/upgrade/remove_files" }
+        eval { require "./etc/upgrade/remove_files" }
           or print "No remove file located, no files to remove\n";
         $remove_files = join ",", map {"q(\$(DESTDIR)$plugin_path/$name/$_)"} @remove_files;
     }

-----------------------------------------------------------------------

Summary of changes:
 Changes                          | 3 +++
 META.yml                         | 4 ++--
 inc/Module/Install/RTx.pm        | 4 ++--
 lib/RT/Extension/TimeTracking.pm | 2 +-
 4 files changed, 8 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
rt-extension-timetracking


More information about the Bps-public-commit mailing list