Skip to content

Commit 5c1bb89

Browse files
committed
Release v0.10.1
1 parent cbea271 commit 5c1bb89

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Template:
33

44
Next
55
---------------------
6+
7+
0.10.1 (2022-12-30)
8+
---------------------
69
- [Fix a regression in `cbor_serialize_alloc` that caused serialization of zero-length strings and bytestrings or byte/strings with zero-length chunks to fail](https://github.com/PJK/libcbor/pull/260) (discovered by [martelletto](https://github.com/martelletto))
710

811
0.10.0 (2022-12-29)

Diff for: CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include(CTest)
55

66
SET(CBOR_VERSION_MAJOR "0")
77
SET(CBOR_VERSION_MINOR "10")
8-
SET(CBOR_VERSION_PATCH "0")
8+
SET(CBOR_VERSION_PATCH "1")
99
SET(CBOR_VERSION ${CBOR_VERSION_MAJOR}.${CBOR_VERSION_MINOR}.${CBOR_VERSION_PATCH})
1010

1111
set(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY true)

Diff for: Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "libcbor"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.10.0
41+
PROJECT_NUMBER = 0.10.1
4242

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

Diff for: doc/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
#
7878
# The short X.Y version.
7979
version = '0.10'
80-
release = '0.10.0'
80+
release = '0.10.1'
8181

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

Diff for: examples/bazel/third_party/libcbor/cbor/configuration.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#define CBOR_MAJOR_VERSION 0
55
#define CBOR_MINOR_VERSION 10
6-
#define CBOR_PATCH_VERSION 0
6+
#define CBOR_PATCH_VERSION 1
77

88
#define CBOR_BUFFER_GROWTH 2
99
#define CBOR_MAX_STACK_SIZE 2048

Diff for: release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ popd
6767
prompt "Will proceed to tag the release with $TAG_NAME."
6868
git commit -a -m "Release $TAG_NAME"
6969
git tag "$TAG_NAME"
70-
git push
70+
git push --set-upstream origin $(git rev-parse --abbrev-ref HEAD)
7171
git push --tags
7272

7373
set +x

0 commit comments

Comments
 (0)