Skip to content

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
medoc92 committed Oct 11, 2023
1 parent f4dd6a1 commit 10de0b8
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 11 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_PREREQ([2.60])

AC_INIT([libnpupnp],[5.0.2],[[email protected]])
AC_INIT([libnpupnp],[5.0.3],[[email protected]])

# - Start with version information of ‘0:0:0’ for each libtool library.
# - Update the version information only immediately before a public release
Expand All @@ -13,7 +13,7 @@ AC_INIT([libnpupnp],[5.0.2],[[email protected]])
# - If any interfaces have been removed or changed since the last public
# release, then set age to 0. Change package name if it is needed to have
# several installed versions of the lib.
AC_SUBST([LT_VERSION_NPUPNP], [10:0:1])
AC_SUBST([LT_VERSION_NPUPNP], [11:0:2])

AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
Expand Down
13 changes: 13 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
libnpupnp2 (5.0.3-1~ppaPPAVERS~SERIES1) SERIES; urgency=low

* Control: add milliseconds timeout option to SoapSendAction(). This is mostly intended to enable
polling a device health, and implemented by checking the the responseData previously
output-only, now input/output argument for additional parameters given as (nm, value) string
pairs. The only parameter checked at the moment is ("timeoutms", "value"). This change is source
and ABI compatible except in the quite unlikely case where the existing code called the function
with a non-empty output array containing a pair with a "timeoutms" first element. In
consequence, and given that upplay/libupnpp is the only know user of the lib, I did not change
the package name or shared lib major version. Even upplay will work with the old lib.

-- Jean-Francois Dockes <[email protected]> Wed, 11 Oct 2023 09:33:00 +0200

libnpupnp2 (5.0.2-1~ppaPPAVERS~SERIES1) SERIES; urgency=low

* Minuscule internal changes. Sync with Windows version.
Expand Down
4 changes: 2 additions & 2 deletions macos/autoconfig-macos.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
#define PACKAGE_NAME "libnpupnp"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libnpupnp 5.0.2"
#define PACKAGE_STRING "libnpupnp 5.0.3"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "libnpupnp"
Expand All @@ -101,7 +101,7 @@
#define PACKAGE_URL ""

/* Define to the version of this package. */
#define PACKAGE_VERSION "5.0.2"
#define PACKAGE_VERSION "5.0.3"

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
Expand Down
4 changes: 2 additions & 2 deletions macos/upnpconfig-macos.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
***************************************************************************/

/** The library version (string) e.g. "1.3.0" */
#define NPUPNP_VERSION_STRING "5.0.2"
#define NPUPNP_VERSION_STRING "5.0.3"

/** Major version of the library */
#define NPUPNP_VERSION_MAJOR 5
Expand All @@ -49,7 +49,7 @@
#define NPUPNP_VERSION_MINOR 0

/** Patch version of the library */
#define NPUPNP_VERSION_PATCH 2
#define NPUPNP_VERSION_PATCH 3

/** The library version (numeric) e.g. 10300 means version 1.3.0 */
#define NPUPNP_VERSION \
Expand Down
2 changes: 1 addition & 1 deletion rpm/libnpupnp.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: UPnP base library
Name: libnpupnp
Version: 5.0.2
Version: 5.0.3
Release: 1%{?dist}
License: BSD
Group: Application/Multimedia
Expand Down
4 changes: 2 additions & 2 deletions windows/autoconfig-windows.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
#define PACKAGE_NAME "libnpupnp"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libnpupnp 5.0.2"
#define PACKAGE_STRING "libnpupnp 5.0.3"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "libnpupnp"
Expand All @@ -117,7 +117,7 @@
#define PACKAGE_URL ""

/* Define to the version of this package. */
#define PACKAGE_VERSION "5.0.2"
#define PACKAGE_VERSION "5.0.3"

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
Expand Down
4 changes: 2 additions & 2 deletions windows/upnpconfig-windows.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
***************************************************************************/

/** The library version (string) e.g. "1.3.0" */
#define NPUPNP_VERSION_STRING "5.0.2"
#define NPUPNP_VERSION_STRING "5.0.3"

/** Major version of the library */
#define NPUPNP_VERSION_MAJOR 5
Expand All @@ -49,7 +49,7 @@
#define NPUPNP_VERSION_MINOR 0

/** Patch version of the library */
#define NPUPNP_VERSION_PATCH 2
#define NPUPNP_VERSION_PATCH 3

/** The library version (numeric) e.g. 10300 means version 1.3.0 */
#define NPUPNP_VERSION \
Expand Down

0 comments on commit 10de0b8

Please sign in to comment.