summaryrefslogtreecommitdiff
path: root/cpan
diff options
context:
space:
mode:
authorSullivan Beck <sbeck@cpan.org>2016-11-29 15:56:59 -0500
committerSteve Hay <steve.m.hay@googlemail.com>2016-12-07 23:19:22 +0000
commite8eb4dddab073d323ac5e25364f103ff74bec7b8 (patch)
tree0a1cee5d4c34c3f2e17a74ba0378163cc39ceb0b /cpan
parent36f9501c266112f8f137cfcf124111695b305b8b (diff)
downloadperl-e8eb4dddab073d323ac5e25364f103ff74bec7b8.tar.gz
Bump Locale-Codes from 3.40 to 3.42
Diffstat (limited to 'cpan')
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes.pod53
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Changes.pod24
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Constants.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Country.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Country_Codes.pm17
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Country_Retired.pm13
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Currency.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Currency_Codes.pm4
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Currency_Retired.pm4
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/LangExt.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/LangExt_Codes.pm4
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/LangExt_Retired.pm4
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/LangFam.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/LangFam_Codes.pm4
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/LangFam_Retired.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/LangVar.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/LangVar_Codes.pm4
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/LangVar_Retired.pm4
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Language.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Language_Codes.pm4
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Language_Retired.pm4
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Script.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Script_Codes.pm4
-rw-r--r--cpan/Locale-Codes/lib/Locale/Codes/Script_Retired.pm4
-rw-r--r--cpan/Locale-Codes/lib/Locale/Country.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Currency.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Language.pm2
-rw-r--r--cpan/Locale-Codes/lib/Locale/Script.pm2
29 files changed, 134 insertions, 45 deletions
diff --git a/cpan/Locale-Codes/lib/Locale/Codes.pm b/cpan/Locale-Codes/lib/Locale/Codes.pm
index 129af1165a..bbe6ab50dd 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes.pm
@@ -31,7 +31,7 @@ our($VERSION,%Data,%Retired);
# $Retired{ TYPE }{ CODESET }{ code }{ CODE } = NAME
# { name }{ NAME } = [CODE,NAME] (the key is lowercase)
-$VERSION='3.40';
+$VERSION='3.42';
#=======================================================================
#
diff --git a/cpan/Locale-Codes/lib/Locale/Codes.pod b/cpan/Locale-Codes/lib/Locale/Codes.pod
index 1fcd4d1a63..d52c82f435 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes.pod
+++ b/cpan/Locale-Codes/lib/Locale/Codes.pod
@@ -264,6 +264,59 @@ A history of changes made to this distribution.
=back
+=head1 BUGS AND QUESTIONS
+
+If you find a bug in Locale::Codes, there are three ways to send it to me.
+Any of them are fine, so use the method that is easiest for you.
+
+=over 4
+
+=item Direct email
+
+You are welcome to send it directly to me by email. The email address
+to use is: sbeck@cpan.org.
+
+=item CPAN Bug Tracking
+
+You can submit it using the CPAN tracking too. This can be done at the
+following URL:
+
+L<http://rt.cpan.org/Public/Dist/Display.html?Name=Locale-Codes>
+
+=item GitHub
+
+You can submit it as an issue on GitHub. This can be done at the following
+URL:
+
+L<https://github.com/SBECK-github/Locale-Codes>
+
+=back
+
+Please do not use other means to report bugs (such as Usenet newsgroups,
+or forums for a specific OS or Linux distribution) as it is impossible
+for me to keep up with all of them.
+
+When filing a bug report, please include the following information:
+
+=over 4
+
+=item B<Locale::Codes version>
+
+Please include the version of Locale::Codes you are using. You can get
+this by using the script:
+
+ use Locale::Codes::Country;
+ print $Locale::Codes::VERSION,"\n";
+
+=back
+
+If you want to report missing or incorrect codes, you must be running the
+most recent version of Locale::Codes.
+
+If you find any problems with the documentation (errors, typos, or items
+that are not clear), please send them to me. I welcome any suggestions
+that will allow me to improve the documentation.
+
=head1 AUTHOR
Locale::Country and Locale::Language were originally written by Neil
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Changes.pod b/cpan/Locale-Codes/lib/Locale/Codes/Changes.pod
index 3ce7fde470..e40f4acd97 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Changes.pod
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Changes.pod
@@ -22,7 +22,29 @@ September, December). I will also check on request, so if a code
changes that you use, feel free to contact me. Any time there are new
codes, I will add them to the module and release a new version.
-=head1 VERSION 3.41 (planned 2016-12-01; sbeck)
+=head1 VERSION 3.46 (planned 2017-12-01; sbeck)
+
+=head1 VERSION 3.45 (planned 2017-09-01; sbeck)
+
+=head1 VERSION 3.44 (planned 2017-06-01; sbeck)
+
+=head1 VERSION 3.43 (planned 2017-03-01; sbeck)
+
+=head1 VERSION 3.42 (2016-11-30; sbeck)
+
+=over 4
+
+=item B<Added Czech republic aliases back in>
+
+Common Czech republic aliases disappeared from the standards, so I added
+them back in. Rob Emery
+
+=back
+
+=head1 VERSION 3.41 (2016-11-18; sbeck)
+
+NEW CODE(s) (Jiri Bohac noted that they were needed so this was release a
+couple weeks earlier than planned)
=head1 VERSION 3.40 (2016-09-01; sbeck)
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Constants.pm b/cpan/Locale-Codes/lib/Locale/Codes/Constants.pm
index 31bf89322b..d17a17cf39 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Constants.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Constants.pm
@@ -17,7 +17,7 @@ require Exporter;
our($VERSION,@ISA,@EXPORT);
our(%ALL_CODESETS);
-$VERSION='3.40';
+$VERSION='3.42';
@ISA = qw(Exporter);
@EXPORT = qw(LOCALE_CODE_ALPHA_2
LOCALE_CODE_ALPHA_3
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Country.pm b/cpan/Locale-Codes/lib/Locale/Codes/Country.pm
index 14977171ce..102f60f294 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Country.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Country.pm
@@ -22,7 +22,7 @@ use Locale::Codes::Country_Retired;
our($VERSION,@ISA,@EXPORT,@EXPORT_OK);
-$VERSION='3.40';
+$VERSION='3.42';
@ISA = qw(Exporter);
@EXPORT = qw(code2country
country2code
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Country_Codes.pm b/cpan/Locale-Codes/lib/Locale/Codes/Country_Codes.pm
index b049e01d76..b446900b50 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Country_Codes.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Country_Codes.pm
@@ -3,7 +3,7 @@ Locale::Codes::Country_Codes;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'harvest_data' is run.
-# Generated on: Wed Aug 24 13:25:34 EDT 2016
+# Generated on: Tue Nov 29 15:43:30 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Data{'country'}{'id'} = '0283';
@@ -239,6 +239,7 @@ $Locale::Codes::Data{'country'}{'id2names'} = {
q(Cyprus),
],
q(0060) => [
+ q(Czechia),
q(Czech Republic),
q(The Czech Republic),
q(Czech Republic, The),
@@ -1500,15 +1501,19 @@ $Locale::Codes::Data{'country'}{'alias2id'} = {
],
q(czech republic) => [
q(0060),
- q(0),
+ q(1),
],
q(czech republic (the)) => [
q(0060),
- q(3),
+ q(4),
],
q(czech republic, the) => [
q(0060),
- q(2),
+ q(3),
+ ],
+ q(czechia) => [
+ q(0060),
+ q(0),
],
q(democratic people's republic of korea) => [
q(0118),
@@ -2740,7 +2745,7 @@ $Locale::Codes::Data{'country'}{'alias2id'} = {
],
q(the czech republic) => [
q(0060),
- q(1),
+ q(2),
],
q(the democratic people's republic of korea) => [
q(0118),
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Country_Retired.pm b/cpan/Locale-Codes/lib/Locale/Codes/Country_Retired.pm
index 4a7f751d85..94bcb30bbe 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Country_Retired.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Country_Retired.pm
@@ -3,7 +3,7 @@ Locale::Codes::Country_Retired;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'deprecate_codes' is run.
-# Generated on: Wed Aug 24 13:31:51 EDT 2016
+# Generated on: Fri Nov 18 09:22:54 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Retired{'country'}{'alpha-2'}{'code'} = {
q(an) => q(Netherlands Antilles),
@@ -349,6 +349,7 @@ $Locale::Codes::Retired{'country'}{'alpha-2'}{'name'} = {
q(bosnia and herzegowina) => [ q(ba), q(Bosnia and Herzegowina) ],
q(cape verde) => [ q(cv), q(Cape Verde) ],
q(congo, the democratic republic of the) => [ q(cd), q(Congo, The Democratic Republic of the) ],
+ q(czech republic) => [ q(cz), q(Czech Republic) ],
q(east timor) => [ q(tl), q(East Timor) ],
q(falkland islands (malvinas)) => [ q(fk), q(Falkland Islands (Malvinas)) ],
q(france, metropolitan) => [ q(fx), q(France, Metropolitan) ],
@@ -407,6 +408,7 @@ $Locale::Codes::Retired{'country'}{'alpha-3'}{'name'} = {
q(christmas island) => [ q(cxr), q(Christmas Island) ],
q(cocos (keeling) islands) => [ q(cck), q(Cocos (Keeling) Islands) ],
q(congo, the democratic republic of the) => [ q(cod), q(Congo, The Democratic Republic of the) ],
+ q(czech republic) => [ q(cze), q(Czech Republic) ],
q(democratic people's republic of korea) => [ q(prk), q(Democratic People's Republic of Korea) ],
q(democratic republic of the congo) => [ q(cod), q(Democratic Republic of the Congo) ],
q(east timor) => [ q(tls), q(East Timor) ],
@@ -480,6 +482,7 @@ $Locale::Codes::Retired{'country'}{'dom'}{'name'} = {
q(bonaire, sint eustatius and saba) => [ q(BQ), q(Bonaire, Sint Eustatius and Saba) ],
q(cape verde) => [ q(cv), q(Cape Verde) ],
q(congo, the democratic republic of the) => [ q(cd), q(Congo, The Democratic Republic of the) ],
+ q(czech republic) => [ q(cz), q(Czech Republic) ],
q(east timor) => [ q(tp), q(East Timor) ],
q(european union) => [ q(eu), q(European Union) ],
q(falkland islands (malvinas)) => [ q(fk), q(Falkland Islands (Malvinas)) ],
@@ -514,12 +517,15 @@ $Locale::Codes::Retired{'country'}{'dom'}{'name'} = {
};
$Locale::Codes::Retired{'country'}{'genc-alpha-2'}{'name'} = {
+ q(czech republic) => [ q(CZ), q(Czech Republic) ],
};
$Locale::Codes::Retired{'country'}{'genc-alpha-3'}{'name'} = {
+ q(czech republic) => [ q(CZE), q(Czech Republic) ],
};
$Locale::Codes::Retired{'country'}{'genc-numeric'}{'name'} = {
+ q(czech republic) => [ q(203), q(Czech Republic) ],
};
$Locale::Codes::Retired{'country'}{'numeric'}{'name'} = {
@@ -539,6 +545,7 @@ $Locale::Codes::Retired{'country'}{'numeric'}{'name'} = {
q(christmas island) => [ q(162), q(Christmas Island) ],
q(cocos (keeling) islands) => [ q(166), q(Cocos (Keeling) Islands) ],
q(congo, the democratic republic of the) => [ q(180), q(Congo, The Democratic Republic of the) ],
+ q(czech republic) => [ q(203), q(Czech Republic) ],
q(democratic people's republic of korea) => [ q(408), q(Democratic People's Republic of Korea) ],
q(democratic republic of the congo) => [ q(180), q(Democratic Republic of the Congo) ],
q(east timor) => [ q(626), q(East Timor) ],
@@ -607,9 +614,11 @@ $Locale::Codes::Retired{'country'}{'numeric'}{'name'} = {
};
$Locale::Codes::Retired{'country'}{'un-alpha-3'}{'name'} = {
+ q(czech republic) => [ q(CZE), q(Czech Republic) ],
};
$Locale::Codes::Retired{'country'}{'un-numeric'}{'name'} = {
+ q(czech republic) => [ q(203), q(Czech Republic) ],
};
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Currency.pm b/cpan/Locale-Codes/lib/Locale/Codes/Currency.pm
index d965fed061..35d9e7a5fa 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Currency.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Currency.pm
@@ -22,7 +22,7 @@ use Locale::Codes::Currency_Retired;
our($VERSION,@ISA,@EXPORT,@EXPORT_OK);
-$VERSION='3.40';
+$VERSION='3.42';
@ISA = qw(Exporter);
@EXPORT = qw(code2currency
currency2code
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Currency_Codes.pm b/cpan/Locale-Codes/lib/Locale/Codes/Currency_Codes.pm
index bccfa0fe5e..d55bef3202 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Currency_Codes.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Currency_Codes.pm
@@ -3,7 +3,7 @@ Locale::Codes::Currency_Codes;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'harvest_data' is run.
-# Generated on: Wed Aug 24 13:29:24 EDT 2016
+# Generated on: Tue Nov 29 15:43:48 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Data{'currency'}{'id'} = '0177';
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Currency_Retired.pm b/cpan/Locale-Codes/lib/Locale/Codes/Currency_Retired.pm
index 6dfe368a97..9ee38872a2 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Currency_Retired.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Currency_Retired.pm
@@ -3,7 +3,7 @@ Locale::Codes::Currency_Retired;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'deprecate_codes' is run.
-# Generated on: Wed Aug 24 13:31:51 EDT 2016
+# Generated on: Fri Nov 18 09:22:54 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Retired{'currency'}{'alpha'}{'code'} = {
q(ADP) => q(Andorran Peseta),
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/LangExt.pm b/cpan/Locale-Codes/lib/Locale/Codes/LangExt.pm
index 18b1034c6b..1f700b4403 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/LangExt.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/LangExt.pm
@@ -20,7 +20,7 @@ use Locale::Codes::LangExt_Retired;
our($VERSION,@ISA,@EXPORT,@EXPORT_OK);
-$VERSION='3.40';
+$VERSION='3.42';
@ISA = qw(Exporter);
@EXPORT = qw(code2langext
langext2code
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/LangExt_Codes.pm b/cpan/Locale-Codes/lib/Locale/Codes/LangExt_Codes.pm
index ff223da795..5552ea20dd 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/LangExt_Codes.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/LangExt_Codes.pm
@@ -3,7 +3,7 @@ Locale::Codes::LangExt_Codes;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'harvest_data' is run.
-# Generated on: Wed Aug 24 13:29:42 EDT 2016
+# Generated on: Fri Nov 18 09:18:36 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Data{'langext'}{'id'} = '0232';
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/LangExt_Retired.pm b/cpan/Locale-Codes/lib/Locale/Codes/LangExt_Retired.pm
index 5418d1e77e..5bfa072ef7 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/LangExt_Retired.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/LangExt_Retired.pm
@@ -3,7 +3,7 @@ Locale::Codes::LangExt_Retired;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'deprecate_codes' is run.
-# Generated on: Wed Aug 24 13:31:51 EDT 2016
+# Generated on: Fri Nov 18 09:22:54 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Retired{'langext'}{'alpha'}{'code'} = {
q(yds) => q(Yiddish Sign Language),
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/LangFam.pm b/cpan/Locale-Codes/lib/Locale/Codes/LangFam.pm
index a8bb7240b9..08d934a978 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/LangFam.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/LangFam.pm
@@ -20,7 +20,7 @@ use Locale::Codes::LangFam_Retired;
our($VERSION,@ISA,@EXPORT,@EXPORT_OK);
-$VERSION='3.40';
+$VERSION='3.42';
@ISA = qw(Exporter);
@EXPORT = qw(code2langfam
langfam2code
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/LangFam_Codes.pm b/cpan/Locale-Codes/lib/Locale/Codes/LangFam_Codes.pm
index 764dfa809d..df5d47cfb4 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/LangFam_Codes.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/LangFam_Codes.pm
@@ -3,7 +3,7 @@ Locale::Codes::LangFam_Codes;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'harvest_data' is run.
-# Generated on: Wed Aug 24 13:29:56 EDT 2016
+# Generated on: Fri Nov 18 09:18:43 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Data{'langfam'}{'id'} = '0116';
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/LangFam_Retired.pm b/cpan/Locale-Codes/lib/Locale/Codes/LangFam_Retired.pm
index 154c398df7..d53fe5cd2a 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/LangFam_Retired.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/LangFam_Retired.pm
@@ -10,7 +10,7 @@ use warnings;
require 5.002;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Retired{'langfam'}{'alpha'}{'code'} = {
};
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/LangVar.pm b/cpan/Locale-Codes/lib/Locale/Codes/LangVar.pm
index 5eb0d7e248..a038eb7681 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/LangVar.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/LangVar.pm
@@ -20,7 +20,7 @@ use Locale::Codes::LangVar_Retired;
our($VERSION,@ISA,@EXPORT,@EXPORT_OK);
-$VERSION='3.40';
+$VERSION='3.42';
@ISA = qw(Exporter);
@EXPORT = qw(code2langvar
langvar2code
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/LangVar_Codes.pm b/cpan/Locale-Codes/lib/Locale/Codes/LangVar_Codes.pm
index 57b060cc97..a560edeb3e 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/LangVar_Codes.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/LangVar_Codes.pm
@@ -3,7 +3,7 @@ Locale::Codes::LangVar_Codes;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'harvest_data' is run.
-# Generated on: Wed Aug 24 13:29:50 EDT 2016
+# Generated on: Fri Nov 18 09:18:40 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Data{'langvar'}{'id'} = '0077';
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/LangVar_Retired.pm b/cpan/Locale-Codes/lib/Locale/Codes/LangVar_Retired.pm
index 92388a1800..8b023ddce1 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/LangVar_Retired.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/LangVar_Retired.pm
@@ -3,7 +3,7 @@ Locale::Codes::LangVar_Retired;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'deprecate_codes' is run.
-# Generated on: Wed Aug 24 13:31:51 EDT 2016
+# Generated on: Fri Nov 18 09:22:54 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Retired{'langvar'}{'alpha'}{'code'} = {
};
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Language.pm b/cpan/Locale-Codes/lib/Locale/Codes/Language.pm
index 1b4416f652..0e3d03e63e 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Language.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Language.pm
@@ -22,7 +22,7 @@ use Locale::Codes::Language_Retired;
our($VERSION,@ISA,@EXPORT,@EXPORT_OK);
-$VERSION='3.40';
+$VERSION='3.42';
@ISA = qw(Exporter);
@EXPORT = qw(code2language
language2code
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Language_Codes.pm b/cpan/Locale-Codes/lib/Locale/Codes/Language_Codes.pm
index ce80962195..f71447c0d7 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Language_Codes.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Language_Codes.pm
@@ -3,7 +3,7 @@ Locale::Codes::Language_Codes;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'harvest_data' is run.
-# Generated on: Wed Aug 24 13:28:54 EDT 2016
+# Generated on: Tue Nov 29 15:43:44 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Data{'language'}{'id'} = '7958';
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Language_Retired.pm b/cpan/Locale-Codes/lib/Locale/Codes/Language_Retired.pm
index cd6ffe5ab4..e2a37cf04d 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Language_Retired.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Language_Retired.pm
@@ -3,7 +3,7 @@ Locale::Codes::Language_Retired;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'deprecate_codes' is run.
-# Generated on: Wed Aug 24 13:31:51 EDT 2016
+# Generated on: Fri Nov 18 09:22:54 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Retired{'language'}{'alpha-2'}{'code'} = {
q(in) => q(Indonesian),
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Script.pm b/cpan/Locale-Codes/lib/Locale/Codes/Script.pm
index 271245393c..d9c480773f 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Script.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Script.pm
@@ -22,7 +22,7 @@ use Locale::Codes::Script_Retired;
our($VERSION,@ISA,@EXPORT,@EXPORT_OK);
-$VERSION='3.40';
+$VERSION='3.42';
@ISA = qw(Exporter);
@EXPORT = qw(code2script
script2code
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Script_Codes.pm b/cpan/Locale-Codes/lib/Locale/Codes/Script_Codes.pm
index 8fd42fe915..0e156c29aa 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Script_Codes.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Script_Codes.pm
@@ -3,7 +3,7 @@ Locale::Codes::Script_Codes;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'harvest_data' is run.
-# Generated on: Wed Aug 24 13:29:35 EDT 2016
+# Generated on: Tue Nov 29 15:43:53 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Data{'script'}{'id'} = '0180';
diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Script_Retired.pm b/cpan/Locale-Codes/lib/Locale/Codes/Script_Retired.pm
index 79e15efbcb..d5456130fb 100644
--- a/cpan/Locale-Codes/lib/Locale/Codes/Script_Retired.pm
+++ b/cpan/Locale-Codes/lib/Locale/Codes/Script_Retired.pm
@@ -3,7 +3,7 @@ Locale::Codes::Script_Retired;
# This file was automatically generated. Any changes to this file will
# be lost the next time 'deprecate_codes' is run.
-# Generated on: Wed Aug 24 13:31:51 EDT 2016
+# Generated on: Fri Nov 18 09:22:54 EST 2016
use strict;
require 5.006;
@@ -11,7 +11,7 @@ use warnings;
use utf8;
our($VERSION);
-$VERSION='3.40';
+$VERSION='3.42';
$Locale::Codes::Retired{'script'}{'alpha'}{'code'} = {
};
diff --git a/cpan/Locale-Codes/lib/Locale/Country.pm b/cpan/Locale-Codes/lib/Locale/Country.pm
index fc619c023b..24e805cebe 100644
--- a/cpan/Locale-Codes/lib/Locale/Country.pm
+++ b/cpan/Locale-Codes/lib/Locale/Country.pm
@@ -10,7 +10,7 @@ use warnings;
use Exporter;
our $VERSION;
-$VERSION='3.40';
+$VERSION='3.42';
our (@ISA,@EXPORT);
diff --git a/cpan/Locale-Codes/lib/Locale/Currency.pm b/cpan/Locale-Codes/lib/Locale/Currency.pm
index 07315e7802..7c01ebd964 100644
--- a/cpan/Locale-Codes/lib/Locale/Currency.pm
+++ b/cpan/Locale-Codes/lib/Locale/Currency.pm
@@ -10,7 +10,7 @@ use warnings;
use Exporter;
our $VERSION;
-$VERSION='3.40';
+$VERSION='3.42';
our (@ISA,@EXPORT);
diff --git a/cpan/Locale-Codes/lib/Locale/Language.pm b/cpan/Locale-Codes/lib/Locale/Language.pm
index 8331915f80..3bffeddd6f 100644
--- a/cpan/Locale-Codes/lib/Locale/Language.pm
+++ b/cpan/Locale-Codes/lib/Locale/Language.pm
@@ -10,7 +10,7 @@ use warnings;
use Exporter;
our $VERSION;
-$VERSION='3.40';
+$VERSION='3.42';
our (@ISA,@EXPORT);
diff --git a/cpan/Locale-Codes/lib/Locale/Script.pm b/cpan/Locale-Codes/lib/Locale/Script.pm
index 18bdafd849..87e2d2d129 100644
--- a/cpan/Locale-Codes/lib/Locale/Script.pm
+++ b/cpan/Locale-Codes/lib/Locale/Script.pm
@@ -10,7 +10,7 @@ use warnings;
use Exporter;
our $VERSION;
-$VERSION='3.40';
+$VERSION='3.42';
our (@ISA,@EXPORT);