Skip to content

Commit a2f2fee

Browse files
committed
Bump version to 0.7
1 parent f425c49 commit a2f2fee

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGES.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
v0.7, 28 June 2016
2+
Add Python 3 compatibility.
3+
Add sock_len argument to bind()
4+
Add block argument to run()
5+
Add run_socket()
6+
Fix COPY* constants
7+
Don't crash on double unlink()
8+
19
v0.6, 15 Apr 2013
210
Add get_mark.
311

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ From source
8181

8282
To install from source::
8383

84-
wget http://pypi.python.org/packages/source/N/NetfilterQueue/NetfilterQueue-0.3.tar.gz
85-
tar -xvzf NetfilterQueue-0.3.tar.gz
86-
cd NetfilterQueue-0.3
84+
wget http://pypi.python.org/packages/source/N/NetfilterQueue/NetfilterQueue-0.7.tar.gz
85+
tar -xvzf NetfilterQueue-0.7.tar.gz
86+
cd NetfilterQueue-0.7
8787
python setup.py install
8888

8989
If Cython is installed, Distutils will use it to regenerate the .c source from the .pyx. It will then compile the .c into a .so.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from distutils.core import setup, Extension
22

3-
VERSION = "0.6" # Remember to change README.rst when version changes.
3+
VERSION = "0.7" # Remember to change README.rst when version changes.
44

55
try:
66
# Use Cython

0 commit comments

Comments
 (0)