From efa6c0886bae46bdaef9b679f61f4b9d8bc296ae Mon Sep 17 00:00:00 2001 From: Pavel Kalvoda Date: Tue, 31 Jan 2023 22:21:10 +0100 Subject: [PATCH] Release v0.10.2 --- CHANGELOG.md | 3 +++ CMakeLists.txt | 2 +- Doxyfile | 2 +- doc/source/conf.py | 2 +- examples/bazel/third_party/libcbor/cbor/configuration.h | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5bde19b..f2475f30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ Template: Next --------------------- + +0.10.2 (2023-01-31) +--------------------- - [Fixed minor test bug causing failures for x86 Linux](https://github.com/PJK/libcbor/pull/266) (discovered by [trofi](https://github.com/PJK/libcbor/issues/263)) - Actual libcbor functionality not affected, bug was in the test suite - [Made tests platform-independent](https://github.com/PJK/libcbor/pull/272) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c6dc9a0..5c0a7846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ include(CTest) SET(CBOR_VERSION_MAJOR "0") SET(CBOR_VERSION_MINOR "10") -SET(CBOR_VERSION_PATCH "1") +SET(CBOR_VERSION_PATCH "2") SET(CBOR_VERSION ${CBOR_VERSION_MAJOR}.${CBOR_VERSION_MINOR}.${CBOR_VERSION_PATCH}) set(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY true) diff --git a/Doxyfile b/Doxyfile index 81a17607..25710576 100644 --- a/Doxyfile +++ b/Doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = libcbor # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.10.1 +PROJECT_NUMBER = 0.10.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/doc/source/conf.py b/doc/source/conf.py index 18b96a46..585efc8a 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -77,7 +77,7 @@ # # The short X.Y version. version = '0.10' -release = '0.10.1' +release = '0.10.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/examples/bazel/third_party/libcbor/cbor/configuration.h b/examples/bazel/third_party/libcbor/cbor/configuration.h index b0b55e83..3472cf49 100644 --- a/examples/bazel/third_party/libcbor/cbor/configuration.h +++ b/examples/bazel/third_party/libcbor/cbor/configuration.h @@ -3,7 +3,7 @@ #define CBOR_MAJOR_VERSION 0 #define CBOR_MINOR_VERSION 10 -#define CBOR_PATCH_VERSION 1 +#define CBOR_PATCH_VERSION 2 #define CBOR_BUFFER_GROWTH 2 #define CBOR_MAX_STACK_SIZE 2048