Skip to content

Commit

Permalink
Improve logging, tests, and legacy compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Anorov committed Mar 23, 2017
1 parent 68c0b6e commit 010c31b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

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

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

## [1.6.6] - 2017-01-29
- Full test suite finally added
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from setuptools import setup

VERSION = "1.6.6"
VERSION = "1.6.7"

setup(
name = "PySocks",
Expand Down
2 changes: 1 addition & 1 deletion socks.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
-Various small bug fixes
"""

__version__ = "1.6.6"
__version__ = "1.6.7"

import socket
import struct
Expand Down

0 comments on commit 010c31b

Please sign in to comment.