diff --git a/netfilterqueue.c b/netfilterqueue.c index 8ab1bb0..230d6dc 100644 --- a/netfilterqueue.c +++ b/netfilterqueue.c @@ -5848,11 +5848,11 @@ static int __Pyx_InitCachedConstants(void) { /* "netfilterqueue.pyx":8 * License: MIT; see LICENSE.txt * """ - * VERSION = (0, 8, 0) # <<<<<<<<<<<<<< + * VERSION = (0, 8, 1) # <<<<<<<<<<<<<< * * # Constants for module users */ - __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_tuple__7 = PyTuple_Pack(3, __pyx_int_0, __pyx_int_8, __pyx_int_1); if (unlikely(!__pyx_tuple__7)) __PYX_ERR(0, 8, __pyx_L1_error) __Pyx_GOTREF(__pyx_tuple__7); __Pyx_GIVEREF(__pyx_tuple__7); __Pyx_RefNannyFinishContext(); @@ -6127,7 +6127,7 @@ PyMODINIT_FUNC PyInit_netfilterqueue(void) /* "netfilterqueue.pyx":8 * License: MIT; see LICENSE.txt * """ - * VERSION = (0, 8, 0) # <<<<<<<<<<<<<< + * VERSION = (0, 8, 1) # <<<<<<<<<<<<<< * * # Constants for module users */ diff --git a/netfilterqueue.pyx b/netfilterqueue.pyx index 1f3f20f..889326e 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, 8, 0) +VERSION = (0, 8, 1) # Constants for module users COPY_NONE = 0 diff --git a/setup.py b/setup.py index ffc50f8..5762621 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from distutils.core import setup, Extension -VERSION = "0.8" # Remember to change README.rst and netfilterqueue.pyx when version changes. +VERSION = "0.8.1" # Remember to change netfilterqueue.pyx when version changes. try: # Use Cython