osmith has submitted this change. ( https://gerrit.osmocom.org/c/libgtpnl/+/37574?usp=email )
Change subject: Bump version: 1.2.5.28-a2dd → 1.3.0 ......................................................................
Bump version: 1.2.5.28-a2dd → 1.3.0
Change-Id: I6620102e86f98b94efdaddfc20506deb8807775b --- M TODO-RELEASE M debian/changelog M src/Makefile.am 3 files changed, 52 insertions(+), 5 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/TODO-RELEASE b/TODO-RELEASE index d0852fc..0ed7189 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -1,9 +1,9 @@ # When cleaning up this file: bump API version in corresponding Makefile.am and rename corresponding debian/lib*.install -# according to https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.... -# In short: +# according to https://osmocom.org/projects/cellular-infrastructure/wiki/Make_a_new_release +# In short: https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.... # LIBVERSION=c:r:a # If the library source code has changed at all since the last update, then increment revision: c:r + 1:a. -# If any interfaces have been added, removed, or changed since the last update: c + 1:0:0. +# If any interfaces have been added, removed, or changed since the last update: c + 1:0:a. # If any interfaces have been added since the last public release: c:r:a + 1. # If any interfaces have been removed or changed since the last public release: c:r:0. -#library what description / commit summary line +#library what description / commit summary line diff --git a/debian/changelog b/debian/changelog index ebecf3f..9aba358 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,41 @@ +libgtpnl (1.3.0) unstable; urgency=medium + + [ Oliver Smith ] + * gitreview: new file + * gitignore: add gtp-link, gtp-tunnel + * README, debian/control: update URLs + * configure: regular_C(PP)FLAGS -> C(PP)FLAGS + * configure: add --enable-werror + * include/linux/gtp.h: fix GTPA_MAX + * include/linux/gtp.h: sync with kernel header + * Use struct gtp_addr for ms_addr and sgsn_addr + * Add IPv6 support + * configure.ac: move AC_OUTPUT -> AC_CONFIG_FILES + * Makefile.am: remove DIST_SUBDIRS + * tools/gtp-tunnel: pass rc of gtp_add_tunnel + * Add QEMU tests + * gtp-link: close sockets on error + * tests/qemu: pass MS_PROTO to gtp-tunnel delete + * tools/gtp-tunnel: pass rc of gtp_del_tunnel + * tests/qemu: add 05_ms_ip46_sgsn_ip4.sh + * contrib: remove rpm spec file + + [ Pablo Neira Ayuso ] + * gtp-genl: allocate room for maximum IPv6 address + * gtp-link: add IPv6 support + * gtp-link: set IPv6 socket only + * gtp: provide interface to set family + * gtp: add flags to gtp_tunnel object + * gtp-genl: display gtp device in listing + * gtp-tunnel: display i_tei in help + * gtp-link: allow to specify listener address + + [ Harald Welte ] + * Add funding link to github mirror + * README.md: Improve markdown formatting; more links + + -- Oliver Smith osmith@sysmocom.de Wed, 24 Jul 2024 14:47:19 +0200 + libgtpnl (1.2.5) unstable; urgency=medium
[ Neels Janosch Hofmeyr ] diff --git a/src/Makefile.am b/src/Makefile.am index 4d6910e..fbc7579 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,7 +2,7 @@
# This is _NOT_ the library release version, it's an API version. # Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification -LIBVERSION=1:2:1 +LIBVERSION=2:0:2
lib_LTLIBRARIES = libgtpnl.la