summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.Merijn Brand - Tux <linux@tux.freedom.nl>2024-01-02 15:25:59 +0100
committerH.Merijn Brand - Tux <linux@tux.freedom.nl>2024-01-02 15:25:59 +0100
commit5350a308b4bcfd42cb7b1b2b690f5f19534e13df (patch)
treef4c32044028ab44c6b63f4ada8f9926df2ce7f30
parent687b26d2d11a7f3fa685470f01857ef8b3e36452 (diff)
It's 2024
-rw-r--r--Changes1
-rw-r--r--README2
-rwxr-xr-xRead.pm2
-rw-r--r--doc/Spreadsheet-Read.34
-rw-r--r--doc/Spreadsheet-Read.html2
-rw-r--r--doc/Spreadsheet-Read.man4
-rw-r--r--doc/Spreadsheet-Read.md2
-rwxr-xr-xexamples/ss-dups-tk.pl2
-rw-r--r--sandbox/SR.pm2
-rwxr-xr-xscripts/ss2tk2
-rwxr-xr-xscripts/xls2csv4
-rwxr-xr-xscripts/xlsx2csv4
12 files changed, 16 insertions, 15 deletions
diff --git a/Changes b/Changes
index 7ed0340..83bcb3e 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
0.89 - 02 Jan 2024, H.Merijn Brand
* Auto-use BOM in CSV *files* with xlscat script
* Fix duplicate option letter (typo) (Erix)
+ * It's 2024
0.88 - 07 Nov 2023, H.Merijn Brand
* Guard $_ globbering from external bitrotted code
diff --git a/README b/README
index f9572e9..a51e94d 100644
--- a/README
+++ b/README
@@ -73,7 +73,7 @@ H.Merijn Brand <perl5@tux.freedom.nl>
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2005-2023 H.Merijn Brand
+Copyright (C) 2005-2024 H.Merijn Brand
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
diff --git a/Read.pm b/Read.pm
index 25a7edf..56b28cb 100755
--- a/Read.pm
+++ b/Read.pm
@@ -2786,7 +2786,7 @@ H.Merijn Brand <perl5@tux.freedom.nl>
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2005-2023 H.Merijn Brand
+Copyright (C) 2005-2024 H.Merijn Brand
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
diff --git a/doc/Spreadsheet-Read.3 b/doc/Spreadsheet-Read.3
index a925fdd..07a4bd0 100644
--- a/doc/Spreadsheet-Read.3
+++ b/doc/Spreadsheet-Read.3
@@ -55,7 +55,7 @@
.\" ========================================================================
.\"
.IX Title "STDIN 1"
-.TH STDIN 1 2023-12-04 "perl v5.38.2" "User Contributed Perl Documentation"
+.TH STDIN 1 2024-01-02 "perl v5.38.2" "User Contributed Perl Documentation"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
@@ -1380,7 +1380,7 @@ focuses on character encoding transparency, and requires some other modules.
H.Merijn Brand <perl5@tux.freedom.nl>
.SH "COPYRIGHT AND LICENSE"
.IX Header "COPYRIGHT AND LICENSE"
-Copyright (C) 2005\-2023 H.Merijn Brand
+Copyright (C) 2005\-2024 H.Merijn Brand
.PP
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
diff --git a/doc/Spreadsheet-Read.html b/doc/Spreadsheet-Read.html
index ce3af65..414456a 100644
--- a/doc/Spreadsheet-Read.html
+++ b/doc/Spreadsheet-Read.html
@@ -1190,7 +1190,7 @@ Unless -A is used, all other options are passed on to xlscat</code></pre>
<h1 id="COPYRIGHT-AND-LICENSE">COPYRIGHT AND LICENSE</h1>
-<p>Copyright (C) 2005-2023 H.Merijn Brand</p>
+<p>Copyright (C) 2005-2024 H.Merijn Brand</p>
<p>This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.</p>
diff --git a/doc/Spreadsheet-Read.man b/doc/Spreadsheet-Read.man
index f66c084..50c7171 100644
--- a/doc/Spreadsheet-Read.man
+++ b/doc/Spreadsheet-Read.man
@@ -1152,9 +1152,9 @@ AUTHOR
H.Merijn Brand <perl5@tux.freedom.nl>
COPYRIGHT AND LICENSE
- Copyright (C) 2005-2023 H.Merijn Brand
+ Copyright (C) 2005-2024 H.Merijn Brand
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
-perl v5.38.2 2023-12-04 STDIN(1)
+perl v5.38.2 2024-01-02 STDIN(1)
diff --git a/doc/Spreadsheet-Read.md b/doc/Spreadsheet-Read.md
index 69663a5..e74ed70 100644
--- a/doc/Spreadsheet-Read.md
+++ b/doc/Spreadsheet-Read.md
@@ -1180,7 +1180,7 @@ H.Merijn Brand <perl5@tux.freedom.nl>
# COPYRIGHT AND LICENSE
-Copyright (C) 2005-2023 H.Merijn Brand
+Copyright (C) 2005-2024 H.Merijn Brand
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
diff --git a/examples/ss-dups-tk.pl b/examples/ss-dups-tk.pl
index f190f0a..bac15e5 100755
--- a/examples/ss-dups-tk.pl
+++ b/examples/ss-dups-tk.pl
@@ -1,7 +1,7 @@
#!/usr/bin/perl
# ss-dup-tk.pl: Find dups in spreadsheet
-# (m)'18 [28-03-2018] Copyright H.M.Brand 2005-2023
+# (m)'18 [28-03-2018] Copyright H.M.Brand 2005-2024
use strict;
use warnings;
diff --git a/sandbox/SR.pm b/sandbox/SR.pm
index 178cf2a..36ed608 100644
--- a/sandbox/SR.pm
+++ b/sandbox/SR.pm
@@ -51,7 +51,7 @@ H.Merijn Brand <hmbrand@cpan.org>
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2020-2023 H.Merijn Brand
+Copyright (C) 2020-2024 H.Merijn Brand
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
diff --git a/scripts/ss2tk b/scripts/ss2tk
index 48a48e4..83a9c26 100755
--- a/scripts/ss2tk
+++ b/scripts/ss2tk
@@ -1,7 +1,7 @@
#!/usr/bin/perl
# ss2tk: show SpreadSheet file in Tk::TableMatrix::Spreadsheet (*)
-# (m)'22 [2022-01-31] Copyright H.M.Brand 2005-2023
+# (m)'22 [2022-01-31] Copyright H.M.Brand 2005-2024
use strict;
use warnings;
diff --git a/scripts/xls2csv b/scripts/xls2csv
index d159091..c82f6be 100755
--- a/scripts/xls2csv
+++ b/scripts/xls2csv
@@ -1,7 +1,7 @@
#!/usr/bin/perl
# xls2csv: Convert supported spreadsheet formats to CSV
-# (m)'23 [2023-12-20] Copyright H.M.Brand 2008-2023
+# (m)'23 [2023-12-20] Copyright H.M.Brand 2008-2024
require 5.008001;
@@ -265,7 +265,7 @@ H.Merijn Brand <perl5@tux.freedom.nl>
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2008-2023 H.Merijn Brand
+Copyright (C) 2008-2024 H.Merijn Brand
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
diff --git a/scripts/xlsx2csv b/scripts/xlsx2csv
index e82b85a..70d34d2 100755
--- a/scripts/xlsx2csv
+++ b/scripts/xlsx2csv
@@ -1,7 +1,7 @@
#!/usr/bin/perl
# xls2csv: Convert supported spreadsheet formats to CSV
-# (m)'23 [2023-12-04] Copyright H.M.Brand 2008-2023
+# (m)'23 [2023-12-04] Copyright H.M.Brand 2008-2024
require 5.008001;
@@ -265,7 +265,7 @@ H.Merijn Brand <perl5@tux.freedom.nl>
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2008-2023 H.Merijn Brand
+Copyright (C) 2008-2024 H.Merijn Brand
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.