Skip to content

Commit ae000f4

Browse files
authored
Merge pull request #349 from PJK/release-0.12.0
Bump version to 0.12.0
2 parents 1338b7a + f28e7d3 commit ae000f4

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
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.12.0 (2025-03-16)
8+
---------------------
69
- BUILD BREAKING: [Respect `INTERPROCEDURAL_OPTIMIZATION` and use the default value](https://github.com/PJK/libcbor/issues/315)
710
- BREAKING: Changes to NaN encoding
811
- [Fix NaN encoding on Windows](https://github.com/PJK/libcbor/issues/271)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include(CTest)
77
include(GNUInstallDirs) # Provides CMAKE_INSTALL_ variables
88

99
set(CBOR_VERSION_MAJOR "0")
10-
set(CBOR_VERSION_MINOR "11")
10+
set(CBOR_VERSION_MINOR "12")
1111
set(CBOR_VERSION_PATCH "0")
1212
set(CBOR_VERSION
1313
${CBOR_VERSION_MAJOR}.${CBOR_VERSION_MINOR}.${CBOR_VERSION_PATCH})

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.11.0
51+
PROJECT_NUMBER = 0.12.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.11'
81-
release = '0.11.0'
80+
version = '0.12'
81+
release = '0.12.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define LIBCBOR_CONFIGURATION_H
33

44
#define CBOR_MAJOR_VERSION 0
5-
#define CBOR_MINOR_VERSION 11
5+
#define CBOR_MINOR_VERSION 12
66
#define CBOR_PATCH_VERSION 0
77

88
#define CBOR_BUFFER_GROWTH 2

0 commit comments

Comments
 (0)