aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TODO-RELEASE8
-rw-r--r--configure.ac4
-rw-r--r--debian/changelog15
-rw-r--r--debian/control4
-rw-r--r--src/libosmo-pfcp/Makefile.am2
5 files changed, 24 insertions, 9 deletions
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.html#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.html#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/configure.ac b/configure.ac
index ba99cb0..b01df5e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -37,8 +37,8 @@ fi
PKG_PROG_PKG_CONFIG([0.20])
dnl checks for libraries
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.9.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.9.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.10.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.10.0)
dnl checks for header files
AC_HEADER_STDC
diff --git a/debian/changelog b/debian/changelog
index 1e57b16..3707bf6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,18 @@
+libosmo-pfcp (0.4.0) unstable; urgency=medium
+
+ [ Harald Welte ]
+ * add missing GPLv2 license text as COPYING file
+
+ [ Neels Janosch Hofmeyr ]
+ * osmo_gtlv_cfg: fix api doc
+ * pfcp up_function_features: allow shorter lengths
+ * add osmo_pfcp_ip_addrs_get
+
+ [ Oliver Smith ]
+ * contrib: remove rpm spec file
+
+ -- Oliver Smith <osmith@sysmocom.de> Wed, 24 Jul 2024 12:04:14 +0200
+
libosmo-pfcp (0.3.0) unstable; urgency=medium
[ Neels Janosch Hofmeyr ]
diff --git a/debian/control b/debian/control
index 9fc066c..6faa4d3 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Build-Depends: debhelper (>= 10),
automake,
libtool,
pkg-config,
- libosmocore-dev (>= 1.9.0),
+ libosmocore-dev (>= 1.10.0),
libtalloc-dev (>= 2.1.0)
Standards-Version: 3.9.8
Vcs-Git: https://gitea.osmocom.org/osmocom/libosmo-pfcp
@@ -44,7 +44,7 @@ Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libosmo-gtlv1 (= ${binary:Version}),
- libosmocore-dev (>= 1.9.0),
+ libosmocore-dev (>= 1.10.0),
libtalloc-dev (>= 2.1.0)
Description: Development files for libosmo-gtlv
libosmo-gtlv implements decoding, encoding and logging of protocols using a
diff --git a/src/libosmo-pfcp/Makefile.am b/src/libosmo-pfcp/Makefile.am
index 3ada108..cbf7903 100644
--- a/src/libosmo-pfcp/Makefile.am
+++ b/src/libosmo-pfcp/Makefile.am
@@ -34,7 +34,7 @@ libosmo_pfcp_la_LIBADD = \
# 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=2:0:2
+LIBVERSION=3:0:3
libosmo_pfcp_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined -export-symbols-regex '^osmo_'