Skip to content

Commit

Permalink
Update version to release 4.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdeep1 committed Sep 14, 2023
1 parent e68f745 commit 9cde7cd
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 17 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions coap_config.h.contiki
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions coap_config.h.riot
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions coap_config.h.windows
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
3 changes: 2 additions & 1 deletion doc/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 \
Expand Down
5 changes: 5 additions & 0 deletions doc/upgrade_4.3.2_4.3.3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
= Upgrade from 4.3.2 to 4.3.3

== Summary

No code or binary changes required.
4 changes: 2 additions & 2 deletions examples/lwip/config/coap_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
6 changes: 3 additions & 3 deletions include/coap3/coap.h.riot
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
6 changes: 3 additions & 3 deletions include/coap3/coap.h.windows
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 9cde7cd

Please sign in to comment.