Prepare release of version 1.7 of both miniupnpc and miniupnpd
This commit is contained in:
parent
f4529b19d1
commit
ef49e90d28
|
@ -1,7 +1,7 @@
|
|||
cmake_minimum_required (VERSION 2.6)
|
||||
|
||||
project (miniupnpc C)
|
||||
set (MINIUPNPC_VERSION 1.6)
|
||||
set (MINIUPNPC_VERSION 1.7)
|
||||
set (MINIUPNPC_API_VERSION 8)
|
||||
|
||||
if (NOT CMAKE_BUILD_TYPE)
|
||||
|
|
|
@ -1 +1 @@
|
|||
1.6
|
||||
1.7
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: miniupnpc.h,v 1.26 2012/04/09 12:40:11 nanard Exp $ */
|
||||
/* $Id: miniupnpc.h,v 1.28 2012/05/23 08:50:10 nanard Exp $ */
|
||||
/* Project: miniupnp
|
||||
* http://miniupnp.free.fr/
|
||||
* Author: Thomas Bernard
|
||||
|
@ -18,7 +18,7 @@
|
|||
#define UPNPDISCOVER_MEMORY_ERROR (-102)
|
||||
|
||||
/* versions : */
|
||||
#define MINIUPNPC_VERSION "1.6"
|
||||
#define MINIUPNPC_VERSION "1.7"
|
||||
#define MINIUPNPC_API_VERSION 8
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -83,7 +83,6 @@ struct UPNPUrls {
|
|||
|
||||
/* UPNP_GetValidIGD() :
|
||||
* return values :
|
||||
* -1 = Internal error
|
||||
* 0 = NO IGD found
|
||||
* 1 = A valid connected IGD has been found
|
||||
* 2 = A valid IGD has been found but it reported as
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#! /usr/bin/python
|
||||
# $Id: setup.py,v 1.8 2012/03/05 04:54:00 nanard Exp $
|
||||
# $Id: setup.py,v 1.9 2012/05/23 08:50:10 nanard Exp $
|
||||
# the MiniUPnP Project (c) 2007-2012 Thomas Bernard
|
||||
# http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/
|
||||
#
|
||||
|
@ -10,7 +10,7 @@ from distutils.core import setup, Extension
|
|||
from distutils import sysconfig
|
||||
sysconfig.get_config_vars()["OPT"] = ''
|
||||
sysconfig.get_config_vars()["CFLAGS"] = ''
|
||||
setup(name="miniupnpc", version="1.6",
|
||||
setup(name="miniupnpc", version="1.7",
|
||||
ext_modules=[
|
||||
Extension(name="miniupnpc", sources=["miniupnpcmodule.c"],
|
||||
extra_objects=["libminiupnpc.a"])
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#! /usr/bin/python
|
||||
# $Id: setupmingw32.py,v 1.7 2012/03/05 04:54:00 nanard Exp $
|
||||
# $Id: setupmingw32.py,v 1.8 2012/05/23 08:50:10 nanard Exp $
|
||||
# the MiniUPnP Project (c) 2007-2012 Thomas Bernard
|
||||
# http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/
|
||||
#
|
||||
|
@ -9,7 +9,7 @@ from distutils.core import setup, Extension
|
|||
from distutils import sysconfig
|
||||
sysconfig.get_config_vars()["OPT"] = ''
|
||||
sysconfig.get_config_vars()["CFLAGS"] = ''
|
||||
setup(name="miniupnpc", version="1.6",
|
||||
setup(name="miniupnpc", version="1.7",
|
||||
ext_modules=[
|
||||
Extension(name="miniupnpc", sources=["miniupnpcmodule.c"],
|
||||
libraries=["ws2_32", "iphlpapi"],
|
||||
|
|
|
@ -1 +1 @@
|
|||
1.6
|
||||
1.7
|
||||
|
|
Loading…
Reference in New Issue