[Bps-public-commit] rt-extension-localdateheader branch master updated. 1.01

BPS Git Server git at git.bestpractical.com
Fri Mar 4 20:48:39 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-localdateheader".

The branch, master has been updated
       via  ea59c2ec5285e8c281ecdf7f26be3fabd8038161 (commit)
       via  58bdbd5f10cb3a84860ec99ae38994c9fe515011 (commit)
       via  4d3a8557c7bc9b5aff27e8b38fbf96f6d25650a1 (commit)
       via  3cc7e469b6a6ae881bcccdc568133f8c1d42fde6 (commit)
       via  5187252953e95ab6c8ca0df5e104bef45b930dd6 (commit)
      from  72941e18f93fca3ae07adaedd69bc30c1c4500fc (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 ea59c2ec5285e8c281ecdf7f26be3fabd8038161
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Mar 5 04:46:07 2022 +0800

    Prep 1.01

diff --git a/Changes b/Changes
index cde880b..961e656 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for RT-Extension-LocalDateHeader
 
+1.01 2022-03-04
+ - Add RT 5 support
+
 1.00 2014-12-16
  - Packaging updates
 
diff --git a/MANIFEST b/MANIFEST
index ee499d3..20e7b63 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -15,7 +15,6 @@ inc/Module/Install/RTx.pm
 inc/Module/Install/RTx/Runtime.pm
 inc/Module/Install/Win32.pm
 inc/Module/Install/WriteAll.pm
-inc/unicore/Name.pm
 inc/YAML/Tiny.pm
 lib/RT/Extension/LocalDateHeader.pm
 Makefile.PL
diff --git a/META.yml b/META.yml
index d7c2837..0d48b86 100644
--- a/META.yml
+++ b/META.yml
@@ -24,6 +24,6 @@ requires:
 resources:
   license: http://opensource.org/licenses/gpl-license.php
   repository: https://github.com/bestpractical/rt-extension-localdateheader
-version: '1.00'
+version: '1.01'
 x_module_install_rtx_version: '0.43'
 x_requires_rt: 4.0.8
diff --git a/lib/RT/Extension/LocalDateHeader.pm b/lib/RT/Extension/LocalDateHeader.pm
index 7d14059..00e6550 100644
--- a/lib/RT/Extension/LocalDateHeader.pm
+++ b/lib/RT/Extension/LocalDateHeader.pm
@@ -2,7 +2,7 @@ use strict;
 use warnings;
 package RT::Extension::LocalDateHeader;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 =head1 NAME
 

commit 58bdbd5f10cb3a84860ec99ae38994c9fe515011
Merge: 72941e1 4d3a855
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Mar 5 04:42:29 2022 +0800

    Merge branch 'update-for-rt5'


commit 4d3a8557c7bc9b5aff27e8b38fbf96f6d25650a1
Author: Jason Crome <jcrome at bestpractical.com>
Date:   Thu Mar 3 14:49:32 2022 -0500

    Updated docs for RT5

diff --git a/README b/README
index bd3102b..396bb8f 100644
--- a/README
+++ b/README
@@ -13,7 +13,7 @@ DESCRIPTION
     headers.
 
 RT VERSION
-    Compatible with RT 4.0 and 4.2.
+    Compatible with RT 4 and 5.0.
 
 INSTALLATION
     perl Makefile.PL
@@ -21,7 +21,7 @@ INSTALLATION
     make install
         May need root permissions
 
-    Edit your /opt/rt4/etc/RT_SiteConfig.pm
+    Edit your /opt/rt5/etc/RT_SiteConfig.pm
         If you are using RT 4.2 or greater, add this line:
 
             Plugin('RT::Extension::LocalDateHeader');
@@ -34,7 +34,7 @@ INSTALLATION
         line.
 
     Clear your mason cache
-            rm -rf /opt/rt4/var/mason_data/obj
+            rm -rf /opt/rt5/var/mason_data/obj
 
     Restart your webserver
 
@@ -51,7 +51,7 @@ BUGS
         L<rt.cpan.org|http://rt.cpan.org/Public/Dist/Display.html?Name=RT-Extension-LocalDateHeader>.
 
 LICENSE AND COPYRIGHT
-    This software is Copyright (c) 2014 by Best Practical Solutions
+    This software is Copyright (c) 2014-2022 by Best Practical Solutions
 
     This is free software, licensed under:
 
diff --git a/lib/RT/Extension/LocalDateHeader.pm b/lib/RT/Extension/LocalDateHeader.pm
index 3aa8f13..7d14059 100644
--- a/lib/RT/Extension/LocalDateHeader.pm
+++ b/lib/RT/Extension/LocalDateHeader.pm
@@ -23,7 +23,7 @@ syntax of mail Date: headers.
 
 =head1 RT VERSION
 
-Compatible with RT 4.0 and 4.2.
+Compatible with RT 4 and 5.0.
 
 =head1 INSTALLATION
 
@@ -37,7 +37,7 @@ Compatible with RT 4.0 and 4.2.
 
 May need root permissions
 
-=item Edit your F</opt/rt4/etc/RT_SiteConfig.pm>
+=item Edit your F</opt/rt5/etc/RT_SiteConfig.pm>
 
 If you are using RT 4.2 or greater, add this line:
 
@@ -51,7 +51,7 @@ or add C<RT::Extension::LocalDateHeader> to your existing C<@Plugins> line.
 
 =item Clear your mason cache
 
-    rm -rf /opt/rt4/var/mason_data/obj
+    rm -rf /opt/rt5/var/mason_data/obj
 
 =item Restart your webserver
 
@@ -73,7 +73,7 @@ or via the web at
 
 =head1 LICENSE AND COPYRIGHT
 
-This software is Copyright (c) 2014 by Best Practical Solutions
+This software is Copyright (c) 2014-2022 by Best Practical Solutions
 
 This is free software, licensed under:
 

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

Summary of changes:
 Changes                             |   3 +
 MANIFEST                            |   1 -
 META.yml                            |   6 +-
 Makefile.PL                         |   1 +
 README                              |   8 +-
 inc/Module/Install.pm               |  35 +--
 inc/Module/Install/Base.pm          |   2 +-
 inc/Module/Install/Can.pm           |  13 +-
 inc/Module/Install/Fetch.pm         |   2 +-
 inc/Module/Install/Include.pm       |   2 +-
 inc/Module/Install/Makefile.pm      |   2 +-
 inc/Module/Install/Metadata.pm      |   2 +-
 inc/Module/Install/RTx.pm           |  81 +++++--
 inc/Module/Install/RTx/Runtime.pm   |   1 +
 inc/Module/Install/ReadmeFromPod.pm |  76 +++++--
 inc/Module/Install/Win32.pm         |   2 +-
 inc/Module/Install/WriteAll.pm      |   2 +-
 inc/YAML/Tiny.pm                    |  37 ++--
 inc/unicore/Name.pm                 | 417 ------------------------------------
 lib/RT/Extension/LocalDateHeader.pm |  10 +-
 20 files changed, 190 insertions(+), 513 deletions(-)
 delete mode 100644 inc/unicore/Name.pm


hooks/post-receive
-- 
rt-extension-localdateheader


More information about the Bps-public-commit mailing list