From a2f2feec63b3fe6fa641331cec4572e8ef3aa746 Mon Sep 17 00:00:00 2001 From: Matt Fox Date: Tue, 28 Jun 2016 00:03:15 -0700 Subject: [PATCH] Bump version to 0.7 --- CHANGES.txt | 8 ++++++++ README.rst | 6 +++--- setup.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 418bbd5..883308a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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. diff --git a/README.rst b/README.rst index 8871b51..17da8b3 100644 --- a/README.rst +++ b/README.rst @@ -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. diff --git a/setup.py b/setup.py index 4299271..6634159 100644 --- a/setup.py +++ b/setup.py @@ -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