Skip to content

Commit

Permalink
Bug Fix: arg src in verbose_ping
Browse files Browse the repository at this point in the history
Bug Fix: arg `src` in `verbose_ping` should be `src_addr`. ( #57 )
  • Loading branch information
kyan001 committed Apr 19, 2022
1 parent 2f012eb commit 849140c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions UPDATES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# UPDATES
* 4.0.2:
* Bug Fix: arg `src` in `verbose_ping` should be `src_addr`. ( #57 )
* 4.0.1:
* Bug Fix: `message` should be the first argument in ping3.errors. ( #55 )
* 4.0.0:
* Feature: Now errors `TimeToLiveExpired`, `DestinationUnreachable` and `DestinationHostUnreachable` have `ip_header` and `icmp_header` attached. ( #48 )
* 3.0.1:
Expand Down
2 changes: 1 addition & 1 deletion ping3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from . import errors
from .enums import ICMP_DEFAULT_CODE, IcmpType, IcmpTimeExceededCode, IcmpDestinationUnreachableCode

__version__ = "4.0.2"
__version__ = "4.0.3"
DEBUG = False # DEBUG: Show debug info for developers. (default False)
EXCEPTIONS = False # EXCEPTIONS: Raise exception when delay is not available.
LOGGER = None # LOGGER: Record logs into console or file.
Expand Down

0 comments on commit 849140c

Please sign in to comment.