pespin has submitted this change. ( 
https://gerrit.osmocom.org/c/libosmo-abis/+/43317?usp=email )

Change subject: Bump version: 2.1.0.13-898f6-dirty → 2.2.0
......................................................................

Bump version: 2.1.0.13-898f6-dirty → 2.2.0

Change-Id: Idd29c6f95b848874cb7c6ba46b96b235bc96dedc
---
M TODO-RELEASE
M configure.ac
M debian/changelog
M debian/control
R debian/libosmoabis17.install
M src/Makefile.am
6 files changed, 36 insertions(+), 16 deletions(-)

Approvals:
  pespin: Looks good to me, approved; Verified




diff --git a/TODO-RELEASE b/TODO-RELEASE
index 5664f80..0ed7189 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -7,8 +7,3 @@
 # 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
-libosmotrau    add osmo_amrt_fill_with_dhf()
-libosmoabis    ABI break               added field to struct e1inp_driver 
(field added at the end)
-libosmoabis    ABI break               added field to struct input_signal_data 
(field added at the end)
-libosmoabis    added                   New API function: e1inp_ts_set_cas()
-libosmoabis    added                   New API signal: S_L_INP_LINE_CAS
diff --git a/configure.ac b/configure.ac
index e38201f..1c20062 100644
--- a/configure.ac
+++ b/configure.ac
@@ -66,12 +66,12 @@
 dnl Generate the output
 AM_CONFIG_HEADER(config.h)

-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.12.0)
-PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.12.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.12.0)
-PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.12.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.14.2)
+PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.14.2)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.14.2)
+PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.14.2)

-PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.7.0)
+PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.8.0)

 AC_ARG_ENABLE([ortp], [AS_HELP_STRING([--disable-ortp], [Build without ortp 
support])],
     [
diff --git a/debian/changelog b/debian/changelog
index 539eadf..440ab82 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,28 @@
+libosmo-abis (2.2.0) unstable; urgency=medium
+
+  [ Mychaela N. Falconia ]
+  * amr_trau: add osmo_amrt_fill_with_dhf() function
+  * trau cosmetic: update osmo_trau2rtp API comments
+  * trau2rtp: rm defunct AMR WIP code
+  * trau_rtp cosmetic: rm dead const lines
+  * trau_frame cosmetic: rm dead/invalid definitions
+  * cosmetic: fix white space in lapd_sap_{start,stop}()
+  * lapd_sap_stop(): fix use of uninitialized stack memory
+
+  [ Pau Espin Pedrol ]
+  * ipaccess: Remove unused function
+  * ipaccess: Add ipa_unit_data to logging context of bsc ipaccess srv stream
+  * ipaccess: Move bts/bsc specific line_update code to helper functions
+
+  [ Timur Davydov ]
+  * lapd-over-datagram-user: fix printf format for timeval fields
+  * gitignore: ignore generated .wasm files
+
+  [ Andreas Eversberg ]
+  * Add CAS channel support
+
+ -- Pau Espin Pedrol <[email protected]>  Thu, 20 Aug 2026 11:27:00 +0200
+
 libosmo-abis (2.1.0) unstable; urgency=medium

   [ Mychaela N. Falconia ]
diff --git a/debian/control b/debian/control
index ff3883a..06e480f 100644
--- a/debian/control
+++ b/debian/control
@@ -25,13 +25,13 @@
 Package: libosmo-abis
 Section: oldlibs
 Architecture: any
-Depends: libosmoabis15 (= ${binary:Version}), libosmotrau11 (= 
${binary:Version}), ${misc:Depends}
+Depends: libosmoabis17 (= ${binary:Version}), libosmotrau11 (= 
${binary:Version}), ${misc:Depends}
 Multi-Arch: same
 Description: Legacy package for libosmo-abis
  libosmo-abis is an empty package helping in the transition to one
  package per DSO.

-Package: libosmoabis15
+Package: libosmoabis17
 Section: libs
 Architecture: any
 Multi-Arch: same
@@ -63,7 +63,7 @@
 Section: libdevel
 Depends: ${misc:Depends},
          libosmotrau11 (= ${binary:Version}),
-         libosmoabis15 (= ${binary:Version}),
+         libosmoabis17 (= ${binary:Version}),
          libosmo-netif-dev (>= 1.7.0),
          libosmocore-dev (>= 1.12.0),
 Description: Development headers for A-bis interface
@@ -77,7 +77,7 @@
 Multi-Arch: same
 Section: debug
 Priority: extra
-Depends: libosmoabis15 (= ${binary:Version}),
+Depends: libosmoabis17 (= ${binary:Version}),
          libosmotrau11 (= ${binary:Version}),
          ${misc:Depends}
 Description: Debug symbols for A-bis interface
diff --git a/debian/libosmoabis15.install b/debian/libosmoabis17.install
similarity index 100%
rename from debian/libosmoabis15.install
rename to debian/libosmoabis17.install
diff --git a/src/Makefile.am b/src/Makefile.am
index 4dc7cfe..bbdee5b 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,8 +1,8 @@
 # This is _NOT_ the library release version, it's an API version.
 # Please read chapter "Library interface versions" of the libtool documentation
 # before making any modifications: 
https://www.gnu.org/software/libtool/manual/html_node/Versioning.html
-ABIS_LIBVERSION=16:0:1
-TRAU_LIBVERSION=12:0:1
+ABIS_LIBVERSION=17:0:0
+TRAU_LIBVERSION=13:0:2

 AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir)
 AM_CFLAGS= -Wall \

--
To view, visit https://gerrit.osmocom.org/c/libosmo-abis/+/43317?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings?usp=email

Gerrit-MessageType: merged
Gerrit-Project: libosmo-abis
Gerrit-Branch: master
Gerrit-Change-Id: Idd29c6f95b848874cb7c6ba46b96b235bc96dedc
Gerrit-Change-Number: 43317
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <[email protected]>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: pespin <[email protected]>

Reply via email to