Skip to content

Commit

Permalink
Fix a compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinBELYN committed Aug 29, 2020
1 parent 503d62d commit 371a552
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to this project will be documented in this file.

## [v1.1.2](https://github.com/ValentinBELYN/icmplib/releases/tag/v1.1.2) - 2020-08-29
- Fix a compatibility issue.

## [v1.1.1](https://github.com/ValentinBELYN/icmplib/releases/tag/v1.1.1) - 2020-07-10
- Fix a bug when the source host does not have an IP address.

Expand Down
4 changes: 2 additions & 2 deletions icmplib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@
__copyright__ = 'Copyright 2017-2020 Valentin BELYN'
__license__ = 'GNU Lesser General Public License v3.0'

__version__ = '1.1.1'
__build__ = '200710'
__version__ = '1.1.2'
__build__ = '200829'
2 changes: 1 addition & 1 deletion icmplib/ip.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def ttl(self, ttl):
self._ttl = ttl

self._socket.setsockopt(
socket.SOL_IP,
socket.IPPROTO_IP,
socket.IP_TTL,
ttl)

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = icmplib
version = 1.1.1
version = 1.1.2
description = Easily forge ICMP packets and make your own ping and traceroute.
keywords = pure, implementation, icmp, sockets, ping, multiping, traceroute, ipv4, ipv6, python3

Expand Down

0 comments on commit 371a552

Please sign in to comment.