From 27cd73f7ca0eea46973b9218d0f6ae5fc9e0face Mon Sep 17 00:00:00 2001 From: Matt Fox Date: Thu, 15 Dec 2016 01:34:19 -0800 Subject: [PATCH] Update to 0.8 --- CHANGES.txt | 4 ++++ netfilterqueue.c | 6 +++--- netfilterqueue.pyx | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 883308a..9bab476 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,7 @@ +v0.8, 15 Dec 2016 + Add get_hw() + Fix byte order bug in set_mark + v0.7, 28 June 2016 Add Python 3 compatibility. Add sock_len argument to bind() diff --git a/netfilterqueue.c b/netfilterqueue.c index 3560d91..fa4219e 100644 --- a/netfilterqueue.c +++ b/netfilterqueue.c @@ -5817,11 +5817,11 @@ static int __Pyx_InitCachedConstants(void) { /* "netfilterqueue.pyx":8 * License: MIT; see LICENSE.txt * """ - * VERSION = (0, 7, 0) # <<<<<<<<<<<<<< + * VERSION = (0, 8, 0) # <<<<<<<<<<<<<< * * # Constants for module users */ - __pyx_tuple__7 = PyTuple_Pack(3, __pyx_int_0, __pyx_int_7, __pyx_int_0); if (unlikely(!__pyx_tuple__7)) __PYX_ERR(0, 8, __pyx_L1_error) + __pyx_tuple__7 = PyTuple_Pack(3, __pyx_int_0, __pyx_int_8, __pyx_int_0); if (unlikely(!__pyx_tuple__7)) __PYX_ERR(0, 8, __pyx_L1_error) __Pyx_GOTREF(__pyx_tuple__7); __Pyx_GIVEREF(__pyx_tuple__7); __Pyx_RefNannyFinishContext(); @@ -6096,7 +6096,7 @@ PyMODINIT_FUNC PyInit_netfilterqueue(void) /* "netfilterqueue.pyx":8 * License: MIT; see LICENSE.txt * """ - * VERSION = (0, 7, 0) # <<<<<<<<<<<<<< + * VERSION = (0, 8, 0) # <<<<<<<<<<<<<< * * # Constants for module users */ diff --git a/netfilterqueue.pyx b/netfilterqueue.pyx index 2004050..5a9ef1d 100644 --- a/netfilterqueue.pyx +++ b/netfilterqueue.pyx @@ -5,7 +5,7 @@ function. Copyright: (c) 2011, Kerkhoff Technologies Inc. License: MIT; see LICENSE.txt """ -VERSION = (0, 7, 0) +VERSION = (0, 8, 0) # Constants for module users COPY_NONE = 0 diff --git a/setup.py b/setup.py index faddbf2..ffc50f8 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from distutils.core import setup, Extension -VERSION = "0.7" # Remember to change README.rst and netfilterqueue.pyx when version changes. +VERSION = "0.8" # Remember to change README.rst and netfilterqueue.pyx when version changes. try: # Use Cython