The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 08
META.json 11
META.yml 11
lib/Net/Whois/Raw/Data.pm 13
lib/Net/Whois/Raw.pm 11
5 files changed (This is a version diff) 414
@@ -604,3 +604,11 @@ Revision history for Perl module Net::Whois::Raw.
 
 2.80    Dec 03 2014 Alexander Nalivayko
     - new tld .OOO
+
+2.81    Jan 21 2015 Igor Zhuk
+    - new tld .MOSCOW
+
+2.82    Jan 23 2015 Alexander Nalobin
+    - whois.jprs.jp whois server's encoding is UTF-8
+
+
@@ -53,5 +53,5 @@
          "web" : "https://github.com/regru/Net-Whois-Raw"
       }
    },
-   "version" : "2.80"
+   "version" : "2.82"
 }
@@ -30,4 +30,4 @@ requires:
   URI::URL: '0'
 resources:
   repository: https://github.com/regru/Net-Whois-Raw.git
-version: '2.80'
+version: '2.82'
@@ -701,6 +701,7 @@ our %servers = qw(
     SO          whois.nic.so
     BZ          whois2.afilias-grs.net
     XXX         whois.nic.xxx
+    MOSCOW      whois.nic.moscow
 );
 
 
@@ -735,7 +736,6 @@ our %codepages = (
     'whois.lg.ua'        => 'koi8-u',
     'whois.od.ua'        => 'koi8-u',
     'whois.in.ua'        => 'koi8-u',
-    'whois.jprs.jp'      => 'iso-2022-jp',
     'whois.nic.or.kr'    => 'euc-kr',
     'whois.domain.kg'    => 'cp-1251',
 );
@@ -962,6 +962,7 @@ our %notfound = (
     'whois.online.rs.corenic.net' => 'no matching objects found',
     'whois.site.rs.corenic.net'   => 'no matching objects found',
     'whois.nic.xn--80adxhks'      => 'No entries found for the selected source',
+    'whois.nic.moscow'            => 'No entries found for the selected source',
 );
 
 # Common whois stripping REs
@@ -2481,6 +2482,7 @@ our %strip = (
     'whois.online.rs.corenic.net' => [ '^%' ],
     'whois.site.rs.corenic.net'   => [ '^%' ],
     'whois.nic.xn--80adxhks'      => [ '^%' ],
+    'whois.nic.moscow'            => [ '^%' ],
 );
 
 our %exceed = (
@@ -14,7 +14,7 @@ use utf8;
 
 our @EXPORT = qw( whois get_whois );
 
-our $VERSION = '2.80';
+our $VERSION = '2.82';
 
 our ($OMIT_MSG, $CHECK_FAIL, $CHECK_EXCEED, $CACHE_DIR, $TIMEOUT, $DEBUG) = (0) x 7;