Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 2.07.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 160a51c..ec29b60 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for Perl extension Text-ANSI-Printf
 
 {{$NEXT}}
 
+2.07 2025-01-30T02:35:35Z
+
+    - "ansiprintf" warned when printing unicode string
+
 2.0602 2024-08-26T04:09:38Z
 
     - Include images in document.
  • Loading branch information
kaz-utashiro committed Jan 30, 2025
1 parent 002dab3 commit af81d35
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
perl: [ '5.38', '5.30', '5.28', '5.24', '5.18', '5.16', '5.14' ]
perl: [ '5.40', '5.30', '5.28', '5.24', '5.18', '5.16', '5.14' ]
name: Perl ${{ matrix.perl }}
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ Revision history for Perl extension Text-ANSI-Printf

{{$NEXT}}

2.07 2025-01-30T02:35:35Z

- "ansiprintf" warned when printing unicode string

2.0602 2024-08-26T04:09:38Z

- Include images in document.
Expand Down
10 changes: 5 additions & 5 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
},
"runtime" : {
"requires" : {
"Text::ANSI::Fold" : "2.2103",
"Text::ANSI::Fold::Util" : "1.01",
"Text::Conceal" : "1.03",
"Text::ANSI::Fold" : "2.28",
"Text::ANSI::Fold::Util" : "1.05",
"Text::Conceal" : "1.04",
"perl" : "v5.14.0"
}
},
Expand All @@ -68,11 +68,11 @@
"web" : "https://github.com/tecolicom/Text-ANSI-Printf"
}
},
"version" : "2.0602",
"version" : "2.07",
"x_authority" : "cpan:UTASHIRO",
"x_contributors" : [
"Kazumasa Utashiro <kaz@utashiro.com>"
],
"x_serialization_backend" : "JSON::PP version 4.12",
"x_serialization_backend" : "JSON::PP version 4.16",
"x_static_install" : 1
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Text::ANSI::Printf - printf function to print string including ANSI sequence

# VERSION

Version 2.0602
Version 2.07

# SYNOPSIS

Expand Down Expand Up @@ -173,7 +173,7 @@ Kazumasa Utashiro

# LICENSE

Copyright © 2020-2024 Kazumasa Utashiro.
Copyright © 2020-2025 Kazumasa Utashiro.

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
6 changes: 3 additions & 3 deletions cpanfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
requires 'perl', '5.014';

requires 'Text::Conceal', '1.03';
requires 'Text::ANSI::Fold', '2.2103';
requires 'Text::ANSI::Fold::Util', '1.01';
requires 'Text::Conceal', '1.04';
requires 'Text::ANSI::Fold', '2.28';
requires 'Text::ANSI::Fold::Util', '1.05';

on 'test' => sub {
requires 'Test::More', '0.98';
Expand Down
2 changes: 1 addition & 1 deletion lib/App/ansiprintf.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use v5.14;
use warnings;
use open IO => ':utf8', ':std';

our $VERSION = "2.0602";
our $VERSION = "2.07";

our $WARN //= $ENV{ANSIPRINTF_WARNING} // 1;
$SIG{__WARN__} = sub {
Expand Down
6 changes: 3 additions & 3 deletions lib/Text/ANSI/Printf.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Text::ANSI::Printf;

our $VERSION = "2.0602";
our $VERSION = "2.07";

use v5.14;
use warnings;
Expand Down Expand Up @@ -48,7 +48,7 @@ Text::ANSI::Printf - printf function to print string including ANSI sequence
=head1 VERSION
Version 2.0602
Version 2.07
=head1 SYNOPSIS
Expand Down Expand Up @@ -249,7 +249,7 @@ Kazumasa Utashiro
=head1 LICENSE
Copyright © 2020-2024 Kazumasa Utashiro.
Copyright © 2020-2025 Kazumasa Utashiro.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
Expand Down
2 changes: 1 addition & 1 deletion script/ansiprintf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ansiprintf format args ...

=head1 VERSION

Version 2.0602
Version 2.07

=head1 DESCRIPTION

Expand Down

0 comments on commit af81d35

Please sign in to comment.