Bump version to 0.7

This commit is contained in:
Matt Fox 2016-06-28 00:03:15 -07:00
parent f425c49eac
commit a2f2feec63
3 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,11 @@
v0.7, 28 June 2016
Add Python 3 compatibility.
Add sock_len argument to bind()
Add block argument to run()
Add run_socket()
Fix COPY* constants
Don't crash on double unlink()
v0.6, 15 Apr 2013
Add get_mark.

View File

@ -81,9 +81,9 @@ From source
To install from source::
wget http://pypi.python.org/packages/source/N/NetfilterQueue/NetfilterQueue-0.3.tar.gz
tar -xvzf NetfilterQueue-0.3.tar.gz
cd NetfilterQueue-0.3
wget http://pypi.python.org/packages/source/N/NetfilterQueue/NetfilterQueue-0.7.tar.gz
tar -xvzf NetfilterQueue-0.7.tar.gz
cd NetfilterQueue-0.7
python setup.py install
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.

View File

@ -1,6 +1,6 @@
from distutils.core import setup, Extension
VERSION = "0.6" # Remember to change README.rst when version changes.
VERSION = "0.7" # Remember to change README.rst when version changes.
try:
# Use Cython