Skip to content

Commit 2eacae8

Browse files
committed
Bump version: 1.13.1.41-403d5-dirty → 1.14.0
Change-Id: Ib6f5b6ee771adb967fa6cebae03c519839693566
1 parent 403d5f1 commit 2eacae8

File tree

4 files changed

+60
-11
lines changed

4 files changed

+60
-11
lines changed

configure.ac

+7-7
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ AC_SEARCH_LIBS([dlsym], [dl dld], [LIBRARY_DLSYM="$LIBS";LIBS=""])
4444
AC_SUBST(LIBRARY_DLSYM)
4545

4646

47-
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.10.0)
48-
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.10.0)
49-
PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.10.0)
50-
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.10.0)
51-
PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.5.0)
52-
PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.6.0)
53-
PKG_CHECK_MODULES(LIBOSMOTRAU, libosmotrau >= 1.6.0)
47+
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.11.0)
48+
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.11.0)
49+
PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.11.0)
50+
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.11.0)
51+
PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.6.0)
52+
PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 2.0.0)
53+
PKG_CHECK_MODULES(LIBOSMOTRAU, libosmotrau >= 2.0.0)
5454

5555
CFLAGS="$CFLAGS -DBUILDING_LIBOSMOMGCPCLIENT -pthread"
5656
CPPFLAGS="$CPPFLAGS -DBUILDING_LIBOSMOMGCPCLIENT -pthread"

debian/changelog

+49
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
osmo-mgw (1.14.0) unstable; urgency=medium
2+
3+
[ Pau Espin Pedrol ]
4+
* jenkins.sh: libosmo-netif no longer depends on libosmo-abis
5+
* jenkins.sh: Use --disable-doxygen configure param
6+
* mgcp-client: Fix wrong value passed to strerror()
7+
* mgcp_client_internal.h: Add missing header dependency
8+
* mgcp-cli: Mark iofd ptr as NULL when freed
9+
* mgcp-cli: Improve error handling around mgcp_msg_gen() return
10+
* mgcp-cli: Fix filling in wrong local IP address of SDP Origin o=
11+
* mgw: Drop own MGCP extension 'noanswer'
12+
* cosmetic: mgw: Fix indentation whitespace
13+
* mgcp-client: Fix regression checking null ptr
14+
* mgw: Rename and move code freeing endp connection
15+
* mgw: Rename and move several get_conn funcs acting on endp object
16+
* mgw: mgcp_network.c: Simplify use of conn_rtp ptr
17+
* mgw: Clean up access to conn_rtp from conn
18+
* mgw: Avoid 2nd lookup of conn in endp during CRCX
19+
* cosmetic: mgw: iuup: Update comment
20+
* mgw: constify mgcp_endp_avail() param
21+
* mgcp_endp: Add helpers accessing endp connections
22+
* mgw: mgcp_protocol: assert freeing last conn allows creating new conn
23+
* mgw: Split conn mode parsing and applying into conn
24+
* mgw: CRCXMDCX/DLCX: rename conn and conn_rtp variables
25+
* mgw: Use bool instead of int in local var
26+
* Rename mgcp_free_rtp_port() to mgcp_rtp_end_free_port()
27+
* mgw: Split mgcp_rtp_end to its own file
28+
* mgw: Introduce mgcp_rtp_end_init()
29+
* mgw: Introduce struct mgcp_codecset struct
30+
* mgw: Cleanup rtp_endp fields in its own function
31+
* mgw: Move force_ptime logic outside of main CRCX func handler
32+
* mgw: Move several params setting to mgcp_rtp_end_init()
33+
* mgw: Simplify and redo code around ssrc patch feature
34+
* mgw: Clean up code allocating conn_rtp rtp/rtcp sockets
35+
* mgw: Rename and cleanup code allocating rtp/rtcp ports in trunk
36+
* mgw: CRCX: Split mgcp header pars parsing into a previous step
37+
* mgw: MDCX: Split mgcp header pars parsing into a previous step
38+
* mgw: DLCX: Split mgcp header pars parsing into a previous step
39+
* mgw: Decouple SDP parsing step from conn obj update
40+
* mgw: Remove wrong TODO comment
41+
* mgw: MDCX: Simplify early return code paths
42+
43+
[ Mychaela N. Falconia ]
44+
* E1 cosmetic: reduce white space in hard-coded TRAU-DL frames
45+
* E1: replace idle_tf_efr[] with a better version
46+
* E1: replace idle_tf_fr[] with a better version
47+
48+
-- Oliver Smith <[email protected]> Wed, 12 Feb 2025 12:30:33 +0100
49+
150
osmo-mgw (1.13.1) unstable; urgency=medium
251

352
[ Philipp Maier ]

debian/control

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Build-Depends: debhelper (>= 10),
66
dh-autoreconf,
77
pkg-config,
88
autotools-dev,
9-
libosmocore-dev (>= 1.10.0),
10-
libosmo-netif-dev (>= 1.5.0),
11-
libosmo-abis-dev (>= 1.6.0),
9+
libosmocore-dev (>= 1.11.0),
10+
libosmo-netif-dev (>= 1.6.0),
11+
libosmo-abis-dev (>= 2.0.0),
1212
osmo-gsm-manuals-dev (>= 1.6.0)
1313
Standards-Version: 3.9.8
1414
Vcs-Git: https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw

src/libosmo-mgcp-client/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ AM_LDFLAGS = \
1919

2020
# This is not at all related to the release version, but a range of supported
2121
# API versions. Read TODO_RELEASE in the source tree's root!
22-
MGCP_CLIENT_LIBVERSION=14:0:0
22+
MGCP_CLIENT_LIBVERSION=14:1:0
2323

2424
lib_LTLIBRARIES = \
2525
libosmo-mgcp-client.la \

0 commit comments

Comments
 (0)