Skip to content

Commit

Permalink
Release YAHC v0.028
Browse files Browse the repository at this point in the history
    - new yahc_conn_register_error()
    - new yahc_conn_attempt()
    - *change in behaivor* - timeout errors are marked with new
      YAHC::Error::TIMEOUT() bit. So, direct comparation like $err ==
      YAHC::Error::CONNECT_TIMEOUT() won't work anymore and should be done as
      bitmask check $err & YAHC::Error::CONNECT_TIMEOUT.
    - bugfix in backoff_delay logic
    - bugfix in user_callback calls, update EV internal time to avoid deviation.
    - added t/account_for_signal.t into MANIFEST
    - beter docs
    - more tests
  • Loading branch information
Ivan Kruglov committed Jul 25, 2016
1 parent f67d8f4 commit 1f2b1bd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
Revision history for Perl module YAHC

0.028 2016-07-23 IKRUGLOV
- new yahc_conn_register_error()
- new yahc_conn_attempt()
- *change in behaivor* - timeout errors are marked with new
YAHC::Error::TIMEOUT() bit. So, direct comparation like $err ==
YAHC::Error::CONNECT_TIMEOUT() won't work anymore and should be done as
bitmask check $err & YAHC::Error::CONNECT_TIMEOUT.
- bugfix in backoff_delay logic
- bugfix in user_callback calls, update EV internal time to avoid deviation.
- added t/account_for_signal.t into MANIFEST
- beter docs
- more tests

0.027 2016-07-16 IKRUGLOV
- new backoff_delay feature
- new lifetime_timeout feature
Expand Down
2 changes: 1 addition & 1 deletion lib/YAHC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package YAHC;
use strict;
use warnings;

our $VERSION = '0.027';
our $VERSION = '0.028';

use EV;
use Time::HiRes;
Expand Down

0 comments on commit 1f2b1bd

Please sign in to comment.