15
0
forked from pool/python-irc

- Update to 17.1:

* Rely on importlib_metadata for loading version from metadata. Removes implicit dependency on setuptools and pkg_resources.
  * #158: The AsyncIO server now accepts a connection factory to enable features like SSL and IPv6 support.
  * #155: SimpleIRCClient now has a dcc method for initiating and associating a DCCConnection object with the client. DCCConnection.listen now accepts a address parameter. Deprecated SimpleIRCClient.dcc_listen and SimpleIRCClient.dcc_connect in favor of the better separation of concerns. Clients should replace:

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-irc?expand=0&rev=8
This commit is contained in:
Tomáš Chvátal
2019-04-05 11:26:05 +00:00
committed by Git OBS Bridge
parent 3e45bf7f0b
commit 0db0a8b91a
4 changed files with 22 additions and 12 deletions

View File

@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Fri Apr 5 11:22:52 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 17.1:
* Rely on importlib_metadata for loading version from metadata. Removes implicit dependency on setuptools and pkg_resources.
* #158: The AsyncIO server now accepts a connection factory to enable features like SSL and IPv6 support.
* #155: SimpleIRCClient now has a dcc method for initiating and associating a DCCConnection object with the client. DCCConnection.listen now accepts a address parameter. Deprecated SimpleIRCClient.dcc_listen and SimpleIRCClient.dcc_connect in favor of the better separation of concerns. Clients should replace:
-------------------------------------------------------------------
Wed Feb 27 02:30:05 UTC 2019 - John Vandenberg <jayvdb@gmail.com>