Skip to content

Commit 170bee2

Browse files
committed
Release v0.11.0
1 parent 1e4f669 commit 170bee2

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Template:
33

44
Next
55
---------------------
6+
7+
0.11.0 (2024-02-04)
8+
---------------------
69
- [Updated documentation to refer to RFC 8949](https://github.com/PJK/libcbor/issues/269)
710
- Improvements to `cbor_describe`
811
- [Bytestring data will now be printed as well](https://github.com/PJK/libcbor/pull/281) by [akallabeth](https://github.com/akallabeth)

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ include(CTest)
66
include(GNUInstallDirs) # Provides CMAKE_INSTALL_ variables
77

88
SET(CBOR_VERSION_MAJOR "0")
9-
SET(CBOR_VERSION_MINOR "10")
10-
SET(CBOR_VERSION_PATCH "2")
9+
SET(CBOR_VERSION_MINOR "11")
10+
SET(CBOR_VERSION_PATCH "0")
1111
SET(CBOR_VERSION ${CBOR_VERSION_MAJOR}.${CBOR_VERSION_MINOR}.${CBOR_VERSION_PATCH})
1212

1313
option(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY "cmake --build --target install does not depend on cmake --build" true)

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = libcbor
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 0.10.2
51+
PROJECT_NUMBER = 0.11.0
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@
7777
# built documents.
7878
#
7979
# The short X.Y version.
80-
version = '0.10'
81-
release = '0.10.2'
80+
version = '0.11'
81+
release = '0.11.0'
8282

8383
# The language for content autogenerated by Sphinx. Refer to documentation
8484
# for a list of supported languages.

examples/bazel/third_party/libcbor/cbor/configuration.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#define LIBCBOR_CONFIGURATION_H
33

44
#define CBOR_MAJOR_VERSION 0
5-
#define CBOR_MINOR_VERSION 10
6-
#define CBOR_PATCH_VERSION 2
5+
#define CBOR_MINOR_VERSION 11
6+
#define CBOR_PATCH_VERSION 0
77

88
#define CBOR_BUFFER_GROWTH 2
99
#define CBOR_MAX_STACK_SIZE 2048

0 commit comments

Comments
 (0)