1
0
mirror of https://github.com/obgm/libcoap.git synced 2025-10-14 02:19:34 +08:00

Update version to release 4.3.3

This commit is contained in:
Jon Shallow
2023-09-13 17:50:51 +01:00
committed by Jon Shallow
parent e68f745ae9
commit 9cde7cdee1
11 changed files with 29 additions and 17 deletions

View File

@@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 3.10)
project(
libcoap
VERSION 4.3.2
VERSION 4.3.3
LANGUAGES CXX C)
set(LIBCOAP_API_VERSION 3)

View File

@@ -1,3 +1,9 @@
2023-09-12 Olaf Bergmann <bergmann@tzi.org>
Change summary for version 4.3.3:
* Fix ABI version.
2023-07-13 Olaf Bergmann <bergmann@tzi.org>
Change summary for version 4.3.2:

View File

@@ -83,7 +83,7 @@
#define PACKAGE_NAME "libcoap"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libcoap 4.3.2rc1"
#define PACKAGE_STRING "libcoap 4.3.3"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "libcoap"
@@ -92,7 +92,7 @@
#define PACKAGE_URL "https://libcoap.net/"
/* Define to the version of this package. */
#define PACKAGE_VERSION "4.3.2rc1"
#define PACKAGE_VERSION "4.3.3"
#define WITH_CONTIKI 1

View File

@@ -313,10 +313,10 @@
#define PACKAGE_NAME "libcoap"
/* Define to the version of this package. */
#define PACKAGE_VERSION "4.3.2"
#define PACKAGE_VERSION "4.3.3"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libcoap 4.3.2"
#define PACKAGE_STRING "libcoap 4.3.3"
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

View File

@@ -145,7 +145,7 @@
#define PACKAGE_NAME "libcoap"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libcoap 4.3.2"
#define PACKAGE_STRING "libcoap 4.3.3"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "libcoap"
@@ -154,7 +154,7 @@
#define PACKAGE_URL "https://libcoap.net/"
/* Define to the version of this package. */
#define PACKAGE_VERSION "4.3.2"
#define PACKAGE_VERSION "4.3.3"
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

View File

@@ -15,7 +15,7 @@
# defined later.
m4_define([libcoap_major_version], [4])
m4_define([libcoap_minor_version], [3])
m4_define([libcoap_micro_version], [2])
m4_define([libcoap_micro_version], [3])
# define an appending release state if needed, for example for pre-releases
# like 'alpha' or 'rc1', for a full release keep the value empty!

View File

@@ -19,6 +19,7 @@ EXTRA_DIST = \
upgrade_4.2.1_4.3.0.txt \
upgrade_4.3.0_4.3.1.txt \
upgrade_4.3.1_4.3.2.txt \
upgrade_4.3.2_4.3.3.txt \
main.md \
module_api_wrap.h
@@ -238,7 +239,7 @@ man-page-build: upg-page-build man-page-start
done
if BUILD_MANPAGES
UPG_LIST = upgrade_4.2.1_4.3.0.txt upgrade_4.3.0_4.3.1.txt upgrade_4.3.1_4.3.2.txt
UPG_LIST = upgrade_4.2.1_4.3.0.txt upgrade_4.3.0_4.3.1.txt upgrade_4.3.1_4.3.2.txt upgrade_4.3.2_4.3.3.txt
upg-page-build:
@for FILE in $(UPG_LIST) ; do \

View File

@@ -0,0 +1,5 @@
= Upgrade from 4.3.2 to 4.3.3
== Summary
No code or binary changes required.

View File

@@ -57,8 +57,8 @@
#endif
#define PACKAGE_NAME "libcoap"
#define PACKAGE_VERSION "4.3.2"
#define PACKAGE_STRING "libcoap 4.3.2"
#define PACKAGE_VERSION "4.3.3"
#define PACKAGE_STRING "libcoap 4.3.3"
#define assert(x) LWIP_ASSERT("CoAP assert failed", x)

View File

@@ -20,16 +20,16 @@
#define LIBCOAP_PACKAGE_NAME "libcoap"
/* Define the full name and version of libcoap. */
#define LIBCOAP_PACKAGE_STRING "libcoap 4.3.2"
#define LIBCOAP_PACKAGE_STRING "libcoap 4.3.3"
/* Define the home page for libcoap. */
#define LIBCOAP_PACKAGE_URL "https://libcoap.net/"
/* Define the version of libcoap this file belongs to. */
#define LIBCOAP_PACKAGE_VERSION "4.3.2"
#define LIBCOAP_PACKAGE_VERSION "4.3.3"
/* Define the numeric version identifier for libcoap */
#define LIBCOAP_VERSION (4003002U)
#define LIBCOAP_VERSION (4003003U)
#ifdef __cplusplus
extern "C" {

View File

@@ -20,16 +20,16 @@
#define LIBCOAP_PACKAGE_NAME "libcoap"
/* Define the full name and version of libcoap. */
#define LIBCOAP_PACKAGE_STRING "libcoap 4.3.2"
#define LIBCOAP_PACKAGE_STRING "libcoap 4.3.3"
/* Define the home page for libcoap. */
#define LIBCOAP_PACKAGE_URL "https://libcoap.net/"
/* Define the version of libcoap this file belongs to. */
#define LIBCOAP_PACKAGE_VERSION "4.3.2"
#define LIBCOAP_PACKAGE_VERSION "4.3.3"
/* Define the numeric version identifier for libcoap */
#define LIBCOAP_VERSION (4003002U)
#define LIBCOAP_VERSION (4003003U)
#ifdef __cplusplus
extern "C" {