Skip to content

Commit

Permalink
Build results of 514bb76 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
beanz committed Nov 22, 2014
1 parent bb3768a commit 827aea3
Show file tree
Hide file tree
Showing 33 changed files with 294 additions and 45 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
Revision history for Perl extension Net::MQTT.

1.143260 2014-11-22 18:57:01+00:00 Europe/London
- Fix authordeps.

1.143250 2014-11-21 23:04:32+00:00 Europe/London
- Fix default client id to meet spec. 1-23 characters from A-Za-z0-9.
Thanks to Richard Postlethwaite for the bug report.
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST
Expand Up @@ -37,6 +37,8 @@ lib/Net/MQTT/Message/Subscribe.pm
lib/Net/MQTT/Message/UnsubAck.pm
lib/Net/MQTT/Message/Unsubscribe.pm
lib/Net/MQTT/TopicStore.pm
t/00-report-prereqs.dd
t/00-report-prereqs.t
t/01-message.t
t/01-topic.t
t/02-messages.t
Expand Down
7 changes: 6 additions & 1 deletion META.json
Expand Up @@ -47,7 +47,12 @@
}
},
"test" : {
"recommends" : {
"CPAN::Meta" : "2.120900"
},
"requires" : {
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"Test::More" : "0"
}
}
Expand All @@ -64,6 +69,6 @@
"web" : "https://github.com/beanz/net-mqtt-perl"
}
},
"version" : "1.143250"
"version" : "1.143260"
}

4 changes: 3 additions & 1 deletion META.yml
Expand Up @@ -3,6 +3,8 @@ abstract: 'Perl modules for MQTT Protocol (http://mqtt.org/)'
author:
- 'Mark Hindess <soft-cpan@temporalanomaly.com>'
build_requires:
ExtUtils::MakeMaker: '0'
File::Spec: '0'
Test::More: '0'
configure_requires:
ExtUtils::MakeMaker: '0'
Expand All @@ -28,4 +30,4 @@ resources:
bugtracker: https://github.com/beanz/net-mqtt-perl/issues
homepage: http://search.cpan.org/dist/Net-MQTT/
repository: git://github.com/beanz/net-mqtt-perl.git
version: '1.143250'
version: '1.143260'
5 changes: 4 additions & 1 deletion Makefile.PL
Expand Up @@ -36,9 +36,11 @@ my %WriteMakefileArgs = (
"warnings" => 0
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::More" => 0
},
"VERSION" => "1.143250",
"VERSION" => "1.143260",
"test" => {
"TESTS" => "t/*.t"
}
Expand All @@ -48,6 +50,7 @@ my %WriteMakefileArgs = (
my %FallbackPrereqs = (
"Carp" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Getopt::Long" => 0,
"IO::Select" => 0,
"IO::Socket::INET" => 0,
Expand Down
2 changes: 1 addition & 1 deletion README
Expand Up @@ -2,7 +2,7 @@ NAME
Net::MQTT - Perl modules for MQTT Protocol (http://mqtt.org/)

VERSION
version 1.143250
version 1.143260

SYNOPSIS
# net-mqtt-sub /topic
Expand Down
2 changes: 1 addition & 1 deletion bin/net-mqtt-pub
Expand Up @@ -139,7 +139,7 @@ net-mqtt-pub - Perl script for publishing to an MQTT topic
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion bin/net-mqtt-sub
Expand Up @@ -123,7 +123,7 @@ net-mqtt-sub - Perl script for subscribing to an MQTT topic
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion bin/net-mqtt-trace
Expand Up @@ -192,7 +192,7 @@ net-mqtt-trace - Perl script for decoding MQTT messages from IP packets
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
@@ -1,3 +1,9 @@
libnet-mqtt-perl (1.143250-1) unstable; urgency=low

* New upstream release.

-- Mark Hindess (Debian Packages) <soft-debian@temporalanomaly.com> Fri, 21 Nov 2014 23:04:32 +0000

libnet-mqtt-perl (1.142010-1) unstable; urgency=low

* New upstream release.
Expand Down
3 changes: 3 additions & 0 deletions dist.ini
Expand Up @@ -38,6 +38,7 @@ except = \.travis.yml
[PodCoverageTests]
[Test::Pod::LinkCheck]
[Test::Pod::No404s]
[Test::ReportPrereqs]
[PodSyntaxTests]
[SpellingCommonMistakesTests]
;[Test::Synopsis]
Expand All @@ -51,6 +52,8 @@ except = \.travis.yml
; authordep Test::NoTabs
; authordep Test::Perl::Critic
; authordep Pod::Coverage::TrustPod
; authordep Test::Kwalitee
; authordep Test::EOL

[GitHub::Meta]
repo = net-mqtt-perl
4 changes: 2 additions & 2 deletions lib/Net/MQTT.pod
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT;
$Net::MQTT::VERSION = '1.143250';
$Net::MQTT::VERSION = '1.143260';
# ABSTRACT: Perl modules for MQTT Protocol (http://mqtt.org/)


Expand All @@ -19,7 +19,7 @@ Net::MQTT - Perl modules for MQTT Protocol (http://mqtt.org/)

=head1 VERSION

version 1.143250
version 1.143260

=head1 SYNOPSIS

Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Constants.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Constants;
$Net::MQTT::Constants::VERSION = '1.143250';
$Net::MQTT::Constants::VERSION = '1.143260';
# ABSTRACT: Module to export constants for MQTT protocol


Expand Down Expand Up @@ -184,7 +184,7 @@ Net::MQTT::Constants - Module to export constants for MQTT protocol
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message;
$Net::MQTT::Message::VERSION = '1.143250';
$Net::MQTT::Message::VERSION = '1.143260';
# ABSTRACT: Perl module to represent MQTT messages


Expand Down Expand Up @@ -130,7 +130,7 @@ Net::MQTT::Message - Perl module to represent MQTT messages
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message/ConnAck.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message::ConnAck;
$Net::MQTT::Message::ConnAck::VERSION = '1.143250';
$Net::MQTT::Message::ConnAck::VERSION = '1.143260';
# ABSTRACT: Perl module to represent an MQTT ConnAck message


Expand Down Expand Up @@ -52,7 +52,7 @@ Net::MQTT::Message::ConnAck - Perl module to represent an MQTT ConnAck message
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message/Connect.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message::Connect;
$Net::MQTT::Message::Connect::VERSION = '1.143250';
$Net::MQTT::Message::Connect::VERSION = '1.143260';
# ABSTRACT: Perl module to represent an MQTT Connect message


Expand Down Expand Up @@ -142,7 +142,7 @@ Net::MQTT::Message::Connect - Perl module to represent an MQTT Connect message
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message/Disconnect.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message::Disconnect;
$Net::MQTT::Message::Disconnect::VERSION = '1.143250';
$Net::MQTT::Message::Disconnect::VERSION = '1.143260';
# ABSTRACT: Perl module to represent an MQTT Disconnect message


Expand All @@ -25,7 +25,7 @@ Net::MQTT::Message::Disconnect - Perl module to represent an MQTT Disconnect mes
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message/JustMessageId.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message::JustMessageId;
$Net::MQTT::Message::JustMessageId::VERSION = '1.143250';
$Net::MQTT::Message::JustMessageId::VERSION = '1.143260';
# ABSTRACT: Perl module for an MQTT message w/message id only payload


Expand Down Expand Up @@ -42,7 +42,7 @@ Net::MQTT::Message::JustMessageId - Perl module for an MQTT message w/message id
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message/PingReq.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message::PingReq;
$Net::MQTT::Message::PingReq::VERSION = '1.143250';
$Net::MQTT::Message::PingReq::VERSION = '1.143260';
# ABSTRACT: Perl module to represent an MQTT PingReq message


Expand All @@ -25,7 +25,7 @@ Net::MQTT::Message::PingReq - Perl module to represent an MQTT PingReq message
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message/PingResp.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message::PingResp;
$Net::MQTT::Message::PingResp::VERSION = '1.143250';
$Net::MQTT::Message::PingResp::VERSION = '1.143260';
# ABSTRACT: Perl module to represent an MQTT PingResp message


Expand All @@ -25,7 +25,7 @@ Net::MQTT::Message::PingResp - Perl module to represent an MQTT PingResp message
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message/PubAck.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message::PubAck;
$Net::MQTT::Message::PubAck::VERSION = '1.143250';
$Net::MQTT::Message::PubAck::VERSION = '1.143260';
# ABSTRACT: Perl module to represent an MQTT PubAck message


Expand All @@ -27,7 +27,7 @@ Net::MQTT::Message::PubAck - Perl module to represent an MQTT PubAck message
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message/PubComp.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message::PubComp;
$Net::MQTT::Message::PubComp::VERSION = '1.143250';
$Net::MQTT::Message::PubComp::VERSION = '1.143260';
# ABSTRACT: Perl module to represent an MQTT PubComp message


Expand All @@ -27,7 +27,7 @@ Net::MQTT::Message::PubComp - Perl module to represent an MQTT PubComp message
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message/PubRec.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message::PubRec;
$Net::MQTT::Message::PubRec::VERSION = '1.143250';
$Net::MQTT::Message::PubRec::VERSION = '1.143260';
# ABSTRACT: Perl module to represent an MQTT PubRec message


Expand All @@ -27,7 +27,7 @@ Net::MQTT::Message::PubRec - Perl module to represent an MQTT PubRec message
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message/PubRel.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message::PubRel;
$Net::MQTT::Message::PubRel::VERSION = '1.143250';
$Net::MQTT::Message::PubRel::VERSION = '1.143260';
# ABSTRACT: Perl module to represent an MQTT PubRel message


Expand Down Expand Up @@ -31,7 +31,7 @@ Net::MQTT::Message::PubRel - Perl module to represent an MQTT PubRel message
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/MQTT/Message/Publish.pm
@@ -1,7 +1,7 @@
use strict;
use warnings;
package Net::MQTT::Message::Publish;
$Net::MQTT::Message::Publish::VERSION = '1.143250';
$Net::MQTT::Message::Publish::VERSION = '1.143260';
# ABSTRACT: Perl module to represent an MQTT Publish message


Expand Down Expand Up @@ -64,7 +64,7 @@ Net::MQTT::Message::Publish - Perl module to represent an MQTT Publish message
=head1 VERSION
version 1.143250
version 1.143260
=head1 SYNOPSIS
Expand Down

0 comments on commit 827aea3

Please sign in to comment.