Skip to content

Commit

Permalink
2ping 4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rfinnie committed Jun 18, 2020
1 parent 5c97124 commit dcffe4f
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 2ping.spec
@@ -1,5 +1,5 @@
Name: 2ping
Version: 4.4.1
Version: 4.5
Release: 1%{?dist}
Summary: Bi-directional ping utility
License: GPLv2+
Expand Down
20 changes: 20 additions & 0 deletions ChangeLog
@@ -1,3 +1,23 @@
2ping 4.5 (2020-06-18)
* Added PyCryptodome support (recommended over PyCrypto, though the latter
is still detected/supported).
* Replaced best_poller module with Python native selectors module.
* Changed --flood output: dots/backspaces are no longer printed, and loss
results / errors display full details.
* --audible tones will only occur if stdout is a TTY.
* Improved hostname/IP display edge cases.
* Added an AF_UNIX --loopback test mode.
* Listener sockets are added and removed as needed, instead of being
re-created on each rescan.
* Listener sockets are automatically rescanned periodically.
* Multiple systemd sockets are now allowed.
* A run can be both a listener and a client at the same time (mainly
useful for smoke testing).
* Other socket handling refactoring.
* Other code refactoring.
* Listener statistics are displayer per-bind.
* Many, many testing/CI improvements.

2ping 4.4.1 (2020-06-08)
* Fixed 2ping.spec referencing old README and making
`rpmbuild -ta 2ping.tar.gz` fail.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -6,7 +6,7 @@
from setuptools import setup


__version__ = "4.4.1"
__version__ = "4.5"
assert sys.version_info > (3, 5)


Expand Down
2 changes: 1 addition & 1 deletion twoping/__init__.py
Expand Up @@ -19,5 +19,5 @@
import sys


__version__ = "4.4.1"
__version__ = "4.5"
assert sys.version_info > (3, 5)

0 comments on commit dcffe4f

Please sign in to comment.