Skip to content

Commit 27cd73f

Browse files
committed
Update to 0.8
1 parent a4b3a44 commit 27cd73f

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v0.8, 15 Dec 2016
2+
Add get_hw()
3+
Fix byte order bug in set_mark
4+
15
v0.7, 28 June 2016
26
Add Python 3 compatibility.
37
Add sock_len argument to bind()

netfilterqueue.c

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netfilterqueue.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function.
55
Copyright: (c) 2011, Kerkhoff Technologies Inc.
66
License: MIT; see LICENSE.txt
77
"""
8-
VERSION = (0, 7, 0)
8+
VERSION = (0, 8, 0)
99

1010
# Constants for module users
1111
COPY_NONE = 0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from distutils.core import setup, Extension
22

3-
VERSION = "0.7" # Remember to change README.rst and netfilterqueue.pyx when version changes.
3+
VERSION = "0.8" # Remember to change README.rst and netfilterqueue.pyx when version changes.
44

55
try:
66
# Use Cython

0 commit comments

Comments
 (0)