Skip to content

Commit

Permalink
bump version to 1.10
Browse files Browse the repository at this point in the history
add MANIFEST

Don't have uninitialized values when the checkout isn't from svn

Signed-off-by: Ask Bjørn Hansen <ask@develooper.com>
  • Loading branch information
abh committed Dec 29, 2008
1 parent 36d9759 commit cba67e1
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Changes
@@ -1,11 +1,17 @@

1.10 - October 4, 2007

- Make the HeadURL and Revision be updated via SVN
- read .json data files (to bulk save/load configuration)
- make ttl values configurable per label
- support __END__ to stop reading a configuration file
- max_hosts configuration (should probably be renamed?)
- Fix bug that disallowed setting default serial/ttl/primary_ns variables
- remove local copy of Net::DNS::Nameserver
- make not existing domain properly return SERVFAIL
- fix bug causing a crash when reloading the configuration
- much much more


r347 -
- see SVN history for history prior to this. :-)
Expand Down
43 changes: 43 additions & 0 deletions MANIFEST
@@ -0,0 +1,43 @@
Changes
config/base.sample
config/cpan.sample
CREDITS
Documentation/rfcs/README
Documentation/rfcs/rfc1034.txt
Documentation/rfcs/rfc1035.txt
Documentation/rfcs/rfc2052.txt
Documentation/rfcs/rfc2181.txt
Documentation/rfcs/rfc3492.txt
Documentation/rfcs/rfc3596.txt
lib/Countries.pm
lib/GeoDNS.pm
LICENSE
Makefile.PL
MANIFEST
pgeodns.conf
pgeodns.pl
sync_config.sh
t/countries.t
t/default_serial.t
t/example.com.json
t/find_base.conf
t/find_base.t
t/get_ns_records.conf
t/get_ns_records.t
t/get_soa_record.t
t/json_config.conf
t/json_config.t
t/pick_groups.conf
t/pick_groups.t
t/pick_hosts.t
t/pod.t
t/pod_coverage.t
t/read_config.conf
t/read_config.t
t/recursive_include.conf
t/recursive_include.t
t/replies.conf
t/replies_weight.t
t/reply_01.t
t/reply_cname.t
t/version.t
6 changes: 5 additions & 1 deletion lib/GeoDNS.pm
Expand Up @@ -9,11 +9,15 @@ use Carp qw(cluck confess);
use JSON qw();
use Data::Dumper;

our $VERSION = '1.1';
our $VERSION = '1.10';
our $REVISION = ('$Rev$' =~ m/(\d+)/x)[0];
my $HeadURL = ('$HeadURL$'
=~ m!(?:https?:/?)?(/[^/]+.*)(?:/lib.*)!x)[0];

# For the benefit of non-SVN checkouts
$REVISION ||= '';
$HeadURL ||= '';

my $gi = Geo::IP->new(GEOIP_STANDARD);

sub new {
Expand Down

0 comments on commit cba67e1

Please sign in to comment.