Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpinkham committed Jun 2, 2013
1 parent cda23b6 commit 7ce21b0
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 31 deletions.
20 changes: 12 additions & 8 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,31 +44,35 @@
"provides" : {
"WebService::DataDog" : {
"file" : "lib/WebService/DataDog.pm",
"version" : "v0.8.0"
"version" : "v0.9.0"
},
"WebService::DataDog::Alert" : {
"file" : "lib/WebService/DataDog/Alert.pm",
"version" : "v0.8.0"
"version" : "v0.9.0"
},
"WebService::DataDog::Comment" : {
"file" : "lib/WebService/DataDog/Comment.pm",
"version" : "v0.9.0"
},
"WebService::DataDog::Dashboard" : {
"file" : "lib/WebService/DataDog/Dashboard.pm",
"version" : "v0.8.0"
"version" : "v0.9.0"
},
"WebService::DataDog::Event" : {
"file" : "lib/WebService/DataDog/Event.pm",
"version" : "v0.8.0"
"version" : "v0.9.0"
},
"WebService::DataDog::Metric" : {
"file" : "lib/WebService/DataDog/Metric.pm",
"version" : "v0.8.0"
"version" : "v0.9.0"
},
"WebService::DataDog::Search" : {
"file" : "lib/WebService/DataDog/Search.pm",
"version" : "v0.8.0"
"version" : "v0.9.0"
},
"WebService::DataDog::Tag" : {
"file" : "lib/WebService/DataDog/Tag.pm",
"version" : "v0.8.0"
"version" : "v0.9.0"
}
},
"release_status" : "stable",
Expand All @@ -84,5 +88,5 @@
"url" : "https://github.com/jpinkham/webservice-datadog.git"
}
},
"version" : "v0.8.0"
"version" : "v0.9.0"
}
19 changes: 11 additions & 8 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,28 @@ name: WebService-DataDog
provides:
WebService::DataDog:
file: lib/WebService/DataDog.pm
version: v0.8.0
version: v0.9.0
WebService::DataDog::Alert:
file: lib/WebService/DataDog/Alert.pm
version: v0.8.0
version: v0.9.0
WebService::DataDog::Comment:
file: lib/WebService/DataDog/Comment.pm
version: v0.9.0
WebService::DataDog::Dashboard:
file: lib/WebService/DataDog/Dashboard.pm
version: v0.8.0
version: v0.9.0
WebService::DataDog::Event:
file: lib/WebService/DataDog/Event.pm
version: v0.8.0
version: v0.9.0
WebService::DataDog::Metric:
file: lib/WebService/DataDog/Metric.pm
version: v0.8.0
version: v0.9.0
WebService::DataDog::Search:
file: lib/WebService/DataDog/Search.pm
version: v0.8.0
version: v0.9.0
WebService::DataDog::Tag:
file: lib/WebService/DataDog/Tag.pm
version: v0.8.0
version: v0.9.0
requires:
Carp: 0
Class::Load: 0
Expand All @@ -53,4 +56,4 @@ resources:
homepage: https://metacpan.org/release/WebService-DataDog
license: http://www.perlfoundation.org/artistic_license_1_0
repository: https://github.com/jpinkham/webservice-datadog.git
version: v0.8.0
version: v0.9.0
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ WriteMakefile
'EXE_FILES' => [],
'PL_FILES' => {},
'test' => {
'TESTS' => 't/*.t t/Dashboard/*.t t/Tag/*.t t/Search/*.t t/Alert/*.t t/Metric/*.t t/Event/*.t'
'TESTS' => 't/*.t t/Dashboard/*.t t/Tag/*.t t/Search/*.t t/Alert/*.t t/Metric/*.t t/Event/*.t t/Comment/*.t'
}
)
;
4 changes: 2 additions & 2 deletions lib/WebService/DataDog.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ WebService::DataDog - Interface to DataDog's REST API.
=head1 VERSION
Version 0.8.0
Version 0.9.0
=cut

our $VERSION = '0.8.0';
our $VERSION = '0.9.0';


=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/WebService/DataDog/Alert.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ WebService::DataDog::Alert - Interface to Alert functions in DataDog's API.
=head1 VERSION
Version 0.8.0
Version 0.9.0
=cut

our $VERSION = '0.8.0';
our $VERSION = '0.9.0';


=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/WebService/DataDog/Dashboard.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ WebService::DataDog::Dashboard - Interface to Dashboard functions in DataDog's A
=head1 VERSION
Version 0.8.0
Version 0.9.0
=cut

our $VERSION = '0.8.0';
our $VERSION = '0.9.0';


=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/WebService/DataDog/Event.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ WebService::DataDog::Event - Interface to Event functions in DataDog's API.
=head1 VERSION
Version 0.8.0
Version 0.9.0
=cut

our $VERSION = '0.8.0';
our $VERSION = '0.9.0';


=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/WebService/DataDog/Metric.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ WebService::DataDog::Metric - Interface to Metric functions in DataDog's API.
=head1 VERSION
Version 0.8.0
Version 0.9.0
=cut

our $VERSION = '0.8.0';
our $VERSION = '0.9.0';


=head1 METHODS
Expand Down
4 changes: 2 additions & 2 deletions lib/WebService/DataDog/Search.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ WebService::DataDog::Search - Interface to Search functions in DataDog's API.
=head1 VERSION
Version 0.8.0
Version 0.9.0
=cut

our $VERSION = '0.8.0';
our $VERSION = '0.9.0';


=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/WebService/DataDog/Tag.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ WebService::DataDog::Tag - Interface to Tag functions in DataDog's API.
=head1 VERSION
Version 0.8.0
Version 0.9.0
=cut

our $VERSION = '0.8.0';
our $VERSION = '0.9.0';


=head1 SYNOPSIS
Expand Down

0 comments on commit 7ce21b0

Please sign in to comment.