Skip to content

Commit 010c31b

Browse files
committed
Improve logging, tests, and legacy compatibility
1 parent 68c0b6e commit 010c31b

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
Brief descriptions of changes will be logged here. Note that unless otherwise specified, all future versions should be backwards compatible with older versions.
44

5-
## [1.6.7] - Unreleased
6-
- Compatibility with gevent. See issue #61.
5+
## [1.6.7] - 2017-03-22
6+
- Make SocksiPy legacy functions kwarg-compatible. See issue [#71](https://github.com/Anorov/PySocks/pull/71).
7+
- Use setuptools in setup.py to support wheel. See issue [#73](https://github.com/Anorov/PySocks/pull/73).
8+
- Test and logging enhancements
79

810
## [1.6.6] - 2017-01-29
911
- Full test suite finally added

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
from setuptools import setup
33

4-
VERSION = "1.6.6"
4+
VERSION = "1.6.7"
55

66
setup(
77
name = "PySocks",

socks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
-Various small bug fixes
5252
"""
5353

54-
__version__ = "1.6.6"
54+
__version__ = "1.6.7"
5555

5656
import socket
5757
import struct

0 commit comments

Comments
 (0)