Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
perl-version: ${{ matrix.perl }}
- run: perl -V
- run: cpanm --quiet --notest Dist::Zilla
- run: dzil authordeps | cpanm --quiet
- run: dzil authordeps | cpanm --quiet -notest
- run: dzil build
- uses: actions/upload-artifact@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for Perl extension AnyEvent::RabbitMQ

- Assign a version number to all modules in package.

1.21 Sat 30 May 23:40:54 BST 2020
- No changes.

Expand Down
6 changes: 5 additions & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name = AnyEvent-RabbitMQ
author = Masahito Ikuta <cooldaemon@gmail.com>
license = Perl_5
copyright_holder = AnyEvent-RabbitMQ's developers
version = 1.21_02

[@Filter]
-bundle = @Basic
Expand All @@ -19,9 +20,12 @@ x_contributors = Julio Polo <julio@hawaii.edu>

[InstallGuide]
[CPANFile]
[VersionFromModule]
[MetaJSON]

[OurPkgVersion]
underscore_eval_version = 1
no_critic = 1

[MetaResources]
repository.url = git://github.com/bobtfish/AnyEvent-RabbitMQ.git
repository.web = https://github.com/bobtfish/AnyEvent-RabbitMQ
Expand Down
2 changes: 1 addition & 1 deletion lib/AnyEvent/RabbitMQ.pm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use AnyEvent::RabbitMQ::LocalQueue;

use namespace::clean;

our $VERSION = '1.21';
# VERSION

use constant {
_ST_CLOSED => 0,
Expand Down
2 changes: 2 additions & 0 deletions lib/AnyEvent/RabbitMQ/Channel.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ use Carp qw(croak cluck);
use POSIX qw(ceil);
BEGIN { *Dumper = \&AnyEvent::RabbitMQ::Dumper }

# VERSION

use namespace::clean;

use constant {
Expand Down
2 changes: 2 additions & 0 deletions lib/AnyEvent/RabbitMQ/LocalQueue.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package AnyEvent::RabbitMQ::LocalQueue;
use strict;
use warnings;

# VERSION

sub new {
my $class = shift;
return bless {
Expand Down