File tree Expand file tree Collapse file tree 5 files changed +10
-7
lines changed
examples/bazel/third_party/libcbor/cbor Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ Template:
33
44Next
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 )
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ include(CTest)
66include (GNUInstallDirs) # Provides CMAKE_INSTALL_ variables
77
88SET (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 " )
1111SET (CBOR_VERSION ${CBOR_VERSION_MAJOR} .${CBOR_VERSION_MINOR} .${CBOR_VERSION_PATCH} )
1212
1313option (CMAKE_SKIP_INSTALL_ALL_DEPENDENCY "cmake --build --target install does not depend on cmake --build" true )
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments