Skip to content

Commit

Permalink
version++
Browse files Browse the repository at this point in the history
  • Loading branch information
lestrrat committed Sep 9, 2011
1 parent d5d8559 commit d4194e1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changes
@@ -1,5 +1,9 @@
Changelog for Perl module ZeroMQ.

0.17 Fri Sep 09 2011 12:40 JST
- Add support for ZMQ_LINGER in setsockopt (sebnow)
https://github.com/lestrrat/ZeroMQ-Perl/pull/19

0.16 Sat Jul 23 2011 08:00 JST
- Fix memory leaks
* rt #69572
Expand Down
2 changes: 1 addition & 1 deletion lib/ZeroMQ.pm
@@ -1,7 +1,7 @@
package ZeroMQ;
use strict;
BEGIN {
our $VERSION = '0.16';
our $VERSION = '0.17';
our @ISA = qw(Exporter);
}
use ZeroMQ::Raw ();
Expand Down
2 changes: 1 addition & 1 deletion lib/ZeroMQ/Raw.pm
Expand Up @@ -7,7 +7,7 @@ BEGIN {
# XXX it's a hassle, but keep it in sync with ZeroMQ.pm
# by loading this here, we can make ZeroMQ::Raw independent
# of ZeroMQ while keeping the dist name as ZeroMQ
XSLoader::load('ZeroMQ', '0.16');
XSLoader::load('ZeroMQ', '0.17');
}

our @EXPORT = qw(
Expand Down

0 comments on commit d4194e1

Please sign in to comment.