Skip to content

Commit

Permalink
Release 4.3.5: Release 4.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdeep1 committed Sep 6, 2024
1 parent 493b503 commit 0d24053
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 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.4
VERSION 4.3.5
LANGUAGES CXX C)

set(LIBCOAP_API_VERSION 3)
Expand Down
4 changes: 2 additions & 2 deletions coap_config.h.contiki
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@

#ifndef PACKAGE_STRING
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libcoap 4.3.5rc3"
#define PACKAGE_STRING "libcoap 4.3.5"
#endif /* PACKAGE_STRING */

#ifndef PACKAGE_TARNAME
Expand All @@ -125,7 +125,7 @@

#ifndef PACKAGE_VERSION
/* Define to the version of this package. */
#define PACKAGE_VERSION "4.3.5rc3"
#define PACKAGE_VERSION "4.3.5"
#endif /* PACKAGE_VERSION */

#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 @@ -367,7 +367,7 @@

#ifndef PACKAGE_STRING
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libcoap 4.3.5rc3"
#define PACKAGE_STRING "libcoap 4.3.5"
#endif /* PACKAGE_STRING */

#ifndef PACKAGE_TARNAME
Expand All @@ -382,7 +382,7 @@

#ifndef PACKAGE_VERSION
/* Define to the version of this package. */
#define PACKAGE_VERSION "4.3.5rc3"
#define PACKAGE_VERSION "4.3.5"
#endif /* PACKAGE_VERSION */

/* Define to 1 if you have the ANSI C header files. */
Expand Down
4 changes: 2 additions & 2 deletions coap_config.h.windows
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@

#ifndef PACKAGE_STRING
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libcoap 4.3.5rc3"
#define PACKAGE_STRING "libcoap 4.3.5"
#endif /* PACKAGE_STRING */

#ifndef PACKAGE_TARNAME
Expand All @@ -182,7 +182,7 @@

#ifndef PACKAGE_VERSION
/* Define to the version of this package. */
#define PACKAGE_VERSION "4.3.5rc3"
#define PACKAGE_VERSION "4.3.5"
#endif /* PACKAGE_VERSION */

/* Define to 1 if you have the ANSI C header files. */
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ m4_define([libcoap_micro_version], [5])

# define an appending release state if needed, for example for pre-releases
# like 'alpha' or 'rc1', for a full release keep the value empty!
m4_define([libcoap_release_state], [rc3])
m4_define([libcoap_release_state], [])

# Define the previous full libcoap software release version here.
# Used if libcoap_release_state is not empty for LIBCOAP_VERSION and LIBCOAP_PACKAGE_BASE.
Expand Down
4 changes: 2 additions & 2 deletions examples/lwip/config/coap_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

#ifndef PACKAGE_STRING
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libcoap 4.3.5rc3"
#define PACKAGE_STRING "libcoap 4.3.5"
#endif /* PACKAGE_STRING */

#ifndef PACKAGE_TARNAME
Expand All @@ -97,7 +97,7 @@

#ifndef PACKAGE_VERSION
/* Define to the version of this package. */
#define PACKAGE_VERSION "4.3.5rc3"
#define PACKAGE_VERSION "4.3.5"
#endif /* PACKAGE_VERSION */

#ifndef assert
Expand Down
2 changes: 1 addition & 1 deletion examples/riot/pkg_libcoap/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PKG_NAME=libcoap
PKG_URL=https://github.com/obgm/libcoap
PKG_VERSION=82b721d7d28c40a2c9f0ba4310a5017d216f0ec3
PKG_VERSION=493b503bca0233c68f6efd52c719888f8a6ee8c0
PKG_LICENSE=BSD-2-Clause

LIBCOAP_BUILD_DIR=$(BINDIR)/pkg/$(PKG_NAME)
Expand Down
6 changes: 3 additions & 3 deletions include/coap3/coap.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@
#define LIBCOAP_PACKAGE_NAME "libcoap"

/* Define the full name and version of libcoap. */
#define LIBCOAP_PACKAGE_STRING "libcoap 4.3.5rc3"
#define LIBCOAP_PACKAGE_STRING "libcoap 4.3.5"

/* 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.5rc3"
#define LIBCOAP_PACKAGE_VERSION "4.3.5"

/* Define the numeric version identifier for libcoap */
#define LIBCOAP_VERSION (4003004ULL)
#define LIBCOAP_VERSION (4003005ULL)

#ifdef __cplusplus
extern "C" {
Expand Down

0 comments on commit 0d24053

Please sign in to comment.