Advanced to version 1.32.

This commit is contained in:
依瑪貓 2021-02-08 00:12:16 +08:00
parent aa51ef5e2b
commit a9697b6007
4 changed files with 9 additions and 3 deletions

View File

@ -6,7 +6,7 @@ use Module::Build;
my $build = Module::Build->new( my $build = Module::Build->new(
dist_name => "Locale-Maketext-Gettext", dist_name => "Locale-Maketext-Gettext",
dist_version => "1.31", dist_version => "1.32",
dist_abstract => "Joins gettext and Maketext frameworks", dist_abstract => "Joins gettext and Maketext frameworks",
dist_author => "imacat <imacat\@mail.imacat.idv.tw>", dist_author => "imacat <imacat\@mail.imacat.idv.tw>",
license => "perl", license => "perl",

View File

@ -1,5 +1,11 @@
Locale-Maketext-Gettext change log Locale-Maketext-Gettext change log
2021-02-08 version 1.32
1. Makefile.PL, Build.PL: Added the CPAN distribution metadata.
2021-02-07
1. maketext: Fixed the version number.
2021-02-07 version 1.31 2021-02-07 version 1.31
1. Updated .gitignore. 1. Updated .gitignore.
2. Added MANIFEST.SKIP. 2. Added MANIFEST.SKIP.

View File

@ -6,7 +6,7 @@ use ExtUtils::MakeMaker;
WriteMakefile( WriteMakefile(
NAME => "Locale::Maketext::Gettext", NAME => "Locale::Maketext::Gettext",
VERSION => "1.31", VERSION => "1.32",
ABSTRACT => "Joins gettext and Maketext frameworks", ABSTRACT => "Joins gettext and Maketext frameworks",
AUTHOR => "imacat <imacat\@mail.imacat.idv.tw>", AUTHOR => "imacat <imacat\@mail.imacat.idv.tw>",
PREREQ_PM => { }, PREREQ_PM => { },

View File

@ -11,7 +11,7 @@ use strict;
use warnings; use warnings;
use base qw(Locale::Maketext Exporter); use base qw(Locale::Maketext Exporter);
our ($VERSION, @EXPORT, @EXPORT_OK); our ($VERSION, @EXPORT, @EXPORT_OK);
$VERSION = 1.31; $VERSION = 1.32;
@EXPORT = qw(read_mo); @EXPORT = qw(read_mo);
@EXPORT_OK = @EXPORT; @EXPORT_OK = @EXPORT;
# Prototype declaration # Prototype declaration