Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.02.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 52f8d0c..edff2bd 100644
--- a/Changes
+++ b/Changes
@@ -2,7 +2,12 @@ Revision history for Perl extension WebService-DNSMadeEasy

 {{$NEXT}}

-0.01 2016-05-24T03:27:19Z
+0.02 2016-05-24T13:33:30Z
+    - Added some missing dependencies to the cpanfile
+    - Minor pod update
+    - Print a bit more info to screen when an api request fails
+    - Modify tests to handle sandbox quirks more gracefully

-    - original version
+0.01 2016-05-24T03:27:19Z
+    - Original version
  • Loading branch information
kablamo committed May 24, 2016
1 parent 2927b63 commit 65fffff
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
9 changes: 7 additions & 2 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ Revision history for Perl extension WebService-DNSMadeEasy

{{$NEXT}}

0.01 2016-05-24T03:27:19Z
0.02 2016-05-24T13:33:30Z
- Added some missing dependencies to the cpanfile
- Minor pod update
- Print a bit more info to screen when an api request fails
- Modify tests to handle sandbox quirks more gracefully

- original version
0.01 2016-05-24T03:27:19Z
- Original version

4 changes: 3 additions & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,13 @@
},
"runtime" : {
"requires" : {
"DDP" : "0",
"DateTime" : "0",
"DateTime::Format::HTTP" : "0",
"Digest::HMAC_SHA1" : "0",
"HTTP::Request" : "0",
"Moo" : "0",
"MooX::Singleton" : "0",
"Role::REST::Client" : "0",
"String::CamelSnakeKebab" : "0"
}
Expand All @@ -71,6 +73,6 @@
"web" : "https://github.com/kablamo/WebService-DNSMadeEasy"
}
},
"version" : "0.01",
"version" : "0.02",
"x_authority" : "cpan:KABLAMO"
}
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,7 @@ it under the same terms as Perl itself.
# AUTHOR

Eric Johnson <[email protected]>
Forked from Torsten Raudssus's WWW::DNSMadeEasy module.

This module started as a fork of Torsten Raudssus's WWW::DNSMadeEasy module,
but its pretty much a total rewrite especially since v1 and v2 of the DNS Made
Easy protocol are very different.
2 changes: 1 addition & 1 deletion lib/WebService/DNSMadeEasy.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Moo;
use WebService::DNSMadeEasy::Client;
use WebService::DNSMadeEasy::ManagedDomain;

our $VERSION = "0.01";
our $VERSION = "0.02";

has api_key => (is => 'ro', required => 1);
has secret => (is => 'ro', required => 1);
Expand Down

0 comments on commit 65fffff

Please sign in to comment.