Skip to content

Commit acf45c0

Browse files
committed
Bump version to 4.0.0
1 parent bce0f80 commit acf45c0

22 files changed

Lines changed: 43 additions & 33 deletions

Makefile.conf.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ DEFS+= -DF_PARALLEL_MALLOC #Fast memory allocator with paralel buckets
108108
#DEFS+= -DDBG_TCPCON #Attach struct history info to all TCP connections
109109
#DEFS+= -DNOSMP #Do not use SMP compliant locking. Faster but won't work on SMP machines
110110
#DEFS+= -DEXTRA_DEBUG #Compile in some extra debugging code
111-
DEFS+= -DCC_O0 #Zero compiler optimizations (FAST compile, SLOW code. For devs)
111+
#DEFS+= -DCC_O0 #Zero compiler optimizations (FAST compile, SLOW code. For devs)
112112
#DEFS+= -DORACLE_USRLOC #Use Oracle compatible queries for USRLOC
113113
#DEFS+= -DSHM_EXTRA_STATS #Provide tools to get extra statistics for the shared memory used
114114
#DEFS+= -DUNIT_TESTS #Include unit testing code into opensips and modules

Makefile.defs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ MAIN_NAME=opensips
6767
VERSION_MAJOR = 4
6868
VERSION_MINOR = 0
6969
VERSION_SUBMINOR = 0
70-
VERSION_BUILD = rc2
70+
VERSION_BUILD =
7171

7272
ifneq (,$(VERSION_BUILD))
7373
RELEASE=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_SUBMINOR)-$(VERSION_BUILD)

mem/common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include "common.h"
2626
#include "../dprint.h"
2727

28-
enum osips_mm mem_allocator = MM_Q_MALLOC_DBG;
28+
enum osips_mm mem_allocator = MM_F_MALLOC;
2929

3030
/* returns -1 if @mm_name is unrecognized */
3131
int set_global_mm(const char *mm_name)

packaging/debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
opensips (4.0.0-1) stable; urgency=low
2+
3+
* Minor Public Release.
4+
5+
-- Liviu Chircu <liviu@opensips.org> Tue, 23 Jun 2026 15:12:29 +0300
6+
7+
18
opensips (4.0.0-rc2-1) stable; urgency=low
29

310
* Minor Public Release.

packaging/freebsd/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77

88
PORTNAME= opensips
9-
PORTVERSION= 4.0.0-rc2
9+
PORTVERSION= 4.0.0
1010
CATEGORIES= net
1111
MASTER_SITES= https://opensips.org/pub/opensips/${PORTVERSION}/
1212
DISTNAME= ${PORTNAME}-${PORTVERSION}-tls_src

packaging/netbsd/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
COMMENT= "OpenSIPS"
77

88
PORTNAME= opensips
9-
PORTVERSION= 4.0.0-rc2
9+
PORTVERSION= 4.0.0
1010
CATEGORIES= net
1111
MASTER_SITES= https://opensips.org/pub/opensips/4.0.0/
1212

packaging/openbsd/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
COMMENT= "OpenSIPS"
77

88
PORTNAME= opensips
9-
PORTVERSION= 4.0.0-rc2
9+
PORTVERSION= 4.0.0
1010
CATEGORIES= net
1111
MASTER_SITES= https://opensips.org/pub/opensips/4.0.0/
1212

packaging/redhat_fedora/opensips.spec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1724,6 +1724,9 @@ fi
17241724

17251725

17261726
%changelog
1727+
* Tue Jun 23 2026 Liviu Chircu <liviu@opensips.org> - 4.0.0-1
1728+
- OpenSIPS minor stable release: 4.0.0-1
1729+
17271730
* Wed Jun 17 2026 Liviu Chircu <liviu@opensips.org> - 4.0.0-rc2-1
17281731
- OpenSIPS minor stable release: 4.0.0-rc2-1
17291732

packaging/solaris/base-pkginfo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PKG="OpenSIPS-base-dbg"
22
NAME="Programmable SIP Server Base Install - Debugging Symbols"
3-
VERSION="4.0.0-rc2"
3+
VERSION="4.0.0"
44
ARCH="sparc"
55
CLASSES="none"
66
CATEGORY="utility"
77
VENDOR="OpenSIPS Solutions"
8-
PSTAMP="17thJun26"
8+
PSTAMP="23rdJun26"
99
EMAIL="bogdan@opensips.org"
1010
ISTATES="S s 1 2 3"
1111
RSTATES="S s 1 2 3"

packaging/solaris/berkeley-pkginfo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PKG="OpenSIPS-berkeley-dbg"
22
NAME="Programmable SIP Server Berkeley Database Support - Debugging Symbols"
3-
VERSION="4.0.0-rc2"
3+
VERSION="4.0.0"
44
ARCH="sparc"
55
CLASSES="none"
66
CATEGORY="utility"
77
VENDOR="OpenSIPS Solutions"
8-
PSTAMP="17thJun26"
8+
PSTAMP="23rdJun26"
99
EMAIL="saguti@gmail.com"
1010
ISTATES="S s 1 2 3"
1111
RSTATES="S s 1 2 3"

0 commit comments

Comments
 (0)