Update to 0.8

This commit is contained in:
Matt Fox 2016-12-15 01:34:19 -08:00
parent a4b3a44b08
commit 27cd73f7ca
4 changed files with 9 additions and 5 deletions

View File

@ -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()

View File

@ -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
*/

View File

@ -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

View File

@ -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