Skip to content

Commit

Permalink
prepare 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
abh committed Dec 30, 2008
1 parent 0360261 commit c9419ac
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1.20 - December 30, 2008

- If new configuration can't be loaded; keep the old one
- Allow 'relaxed' JSON in config files (trailing commas and comments)
- Add --config option to pgeodns.pl
- Updated to work with new JSON.pm (Steve Peters)
- Fix some excessive debug output and other small tweaks (Steve Peters)
- Move to git

1.10 - October 4, 2007

Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ pgeodns.conf
pgeodns.pl
sync_config.sh
t/countries.t
t/config_error.t
t/default_serial.t
t/example.com.json
t/find_base.conf
Expand Down
6 changes: 3 additions & 3 deletions lib/GeoDNS.pm
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package GeoDNS;
use strict;
use warnings;
use Net::DNS qw(0.60);
use Net::DNS '0.60';
use Countries qw(continent);
use Geo::IP;
use List::Util qw/max shuffle/;
use Carp qw(cluck confess);
use JSON qw();
use JSON '2.0';
use Data::Dumper;

our $VERSION = '1.10';
our $VERSION = '1.20';

my $git;

Expand Down

0 comments on commit c9419ac

Please sign in to comment.