Skip to content

Commit 92320ca

Browse files
committed
Add changelog, Travis CI support
1 parent b4323df commit 92320ca

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Change Log
2+
3+
Brief descriptions of changes will be logged here. Note that unless otherwise specified, all future versions should be backwards compatible with older versions.
4+
5+
## [1.6.6] - 2017-01-29
6+
- Full test suite finally added
7+
- Travis CI enabled for project

setup.py

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

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

66
setup(
77
name = "PySocks",

socks.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""
22
SocksiPy - Python SOCKS module.
3-
Version 1.6.5
43
54
Copyright 2006 Dan-Haim. All rights reserved.
65
@@ -52,7 +51,7 @@
5251
-Various small bug fixes
5352
"""
5453

55-
__version__ = "1.6.5"
54+
__version__ = "1.6.6"
5655

5756
import socket
5857
import struct

0 commit comments

Comments
 (0)