Skip to content

Commit

Permalink
modeled after ::Bitly
Browse files Browse the repository at this point in the history
  • Loading branch information
genio committed Feb 7, 2017
1 parent 0c82d25 commit 9c517d7
Show file tree
Hide file tree
Showing 17 changed files with 674 additions and 304 deletions.
14 changes: 14 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Revision history for {{$dist->name}}

{{$NEXT}}
- MAJOR CHANGES!!!!!
- Cleaned up the object-oriented interface.
- Removed errors function
- Removed version function
- Backfilled Changelog as best as possible.
- Added tidy, git, mailmap, and travis files.
- Added a MANIFEST.SKIP
Expand All @@ -9,6 +13,16 @@ Revision history for {{$dist->name}}
- Made the README a github markdown file.
- Add LICENSE file to repository
- Add CONTRIBUTING.md to repository
- Added proper attributes
- Aliased any old pseudo-attributes to the new proper ones
- Re-documented every method call
- All method calls use parameters matching their actual yourls.org calls
- All method calls return a hash reference or die (Try::Tiny)
- All method calls use JSON-only
- Got rid of any and all XML-related code
- Make use of JSON::MaybeXS instead
- Cleaned up the requirements list in a cpanfile
- Added quite a bit more tests

0.06 2010-03-23
- Added signature
Expand Down
10 changes: 6 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,16 @@
"File::HomeDir" : "1.00",
"File::Spec" : "0",
"Path::Tiny" : "0",
"Test::More" : "0.88"
"Test::More" : "0.88",
"Try::Tiny" : "0.24",
"URI" : "1.58"
}
}
},
"provides" : {
"WWW::Shorten::Yourls" : {
"file" : "lib/WWW/Shorten/Yourls.pm",
"version" : "0.070"
"version" : "1.000"
}
},
"release_status" : "stable",
Expand All @@ -97,7 +99,7 @@
"web" : "https://github.com/p5-shorten/WWW-Shorten-Yourls"
}
},
"version" : "0.070",
"version" : "1.000",
"x_Dist_Zilla" : {
"perl" : {
"version" : "5.024000"
Expand Down Expand Up @@ -408,7 +410,7 @@
"branch" : null,
"changelog" : "Changes",
"signed" : 0,
"tag" : "v0.070",
"tag" : "v1.000",
"tag_format" : "v%v",
"tag_message" : "v%v"
},
Expand Down
7 changes: 5 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,11 @@ my %WriteMakefileArgs = (
"File::HomeDir" => "1.00",
"File::Spec" => 0,
"Path::Tiny" => 0,
"Test::More" => "0.88"
"Test::More" => "0.88",
"Try::Tiny" => "0.24",
"URI" => "1.58"
},
"VERSION" => "0.070",
"VERSION" => "1.000",
"test" => {
"TESTS" => "t/*.t"
}
Expand All @@ -57,6 +59,7 @@ my %FallbackPrereqs = (
"Path::Tiny" => 0,
"Scalar::Util" => 0,
"Test::More" => "0.88",
"Try::Tiny" => "0.24",
"URI" => "1.58",
"WWW::Shorten" => "3.09",
"base" => 0,
Expand Down
2 changes: 2 additions & 0 deletions cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ on 'test' => sub {
requires 'File::Spec';
requires 'Path::Tiny';
requires 'Test::More' => '0.88';
requires 'Try::Tiny' => '0.24';
requires 'URI' => '1.58';
};

on 'develop' => sub {
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ license = Perl_5
copyright_holder = Pankaj Jain and Teknatus Solutions LLC
copyright_year = 2009

version = 0.070
version = 1.000

[Git::GatherDir]
exclude_filename = Makefile.PL
Expand Down
Loading

0 comments on commit 9c517d7

Please sign in to comment.