Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
external-tools
libcbor
Commits
170bee2b
Unverified
Commit
170bee2b
authored
1 year ago
by
PJK
Browse files
Options
Download
Email Patches
Plain Diff
Release v0.11.0
parent
1e4f6694
master
dependabot/pip/doc/source/certifi-2024.7.4
dependabot/pip/doc/source/idna-3.7
dependabot/pip/doc/source/jinja2-3.1.4
dependabot/pip/doc/source/requests-2.32.0
dependabot/pip/doc/source/tornado-6.4.1
dependabot/pip/doc/source/urllib3-2.2.2
dependabot/pip/doc/source/zipp-3.19.1
v0.11.0
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGELOG.md
+3
-0
CHANGELOG.md
CMakeLists.txt
+2
-2
CMakeLists.txt
Doxyfile
+1
-1
Doxyfile
doc/source/conf.py
+2
-2
doc/source/conf.py
examples/bazel/third_party/libcbor/cbor/configuration.h
+2
-2
examples/bazel/third_party/libcbor/cbor/configuration.h
with
10 additions
and
7 deletions
+10
-7
CHANGELOG.md
View file @
170bee2b
...
...
@@ -3,6 +3,9 @@ Template:
Next
---------------------
0.
11.0 (2024-02-04)
---------------------
-
[
Updated documentation to refer to RFC 8949
](
https://github.com/PJK/libcbor/issues/269
)
-
Improvements to
`cbor_describe`
-
[
Bytestring data will now be printed as well
](
https://github.com/PJK/libcbor/pull/281
)
by
[
akallabeth
](
https://github.com/akallabeth
)
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
View file @
170bee2b
...
...
@@ -6,8 +6,8 @@ include(CTest)
include
(
GNUInstallDirs
)
# Provides CMAKE_INSTALL_ variables
SET
(
CBOR_VERSION_MAJOR
"0"
)
SET
(
CBOR_VERSION_MINOR
"1
0
"
)
SET
(
CBOR_VERSION_PATCH
"
2
"
)
SET
(
CBOR_VERSION_MINOR
"1
1
"
)
SET
(
CBOR_VERSION_PATCH
"
0
"
)
SET
(
CBOR_VERSION
${
CBOR_VERSION_MAJOR
}
.
${
CBOR_VERSION_MINOR
}
.
${
CBOR_VERSION_PATCH
}
)
option
(
CMAKE_SKIP_INSTALL_ALL_DEPENDENCY
"cmake --build --target install does not depend on cmake --build"
true
)
...
...
This diff is collapsed.
Click to expand it.
Doxyfile
View file @
170bee2b
...
...
@@ -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.1
0.2
PROJECT_NUMBER = 0.1
1.0
# 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
...
...
This diff is collapsed.
Click to expand it.
doc/source/conf.py
View file @
170bee2b
...
...
@@ -77,8 +77,8 @@ copyright = '2014 - 2020, Pavel Kalvoda'
# built documents.
#
# The short X.Y version.
version
=
'0.1
0
'
release
=
'0.1
0.2
'
version
=
'0.1
1
'
release
=
'0.1
1.0
'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
This diff is collapsed.
Click to expand it.
examples/bazel/third_party/libcbor/cbor/configuration.h
View file @
170bee2b
...
...
@@ -2,8 +2,8 @@
#define LIBCBOR_CONFIGURATION_H
#define CBOR_MAJOR_VERSION 0
#define CBOR_MINOR_VERSION 1
0
#define CBOR_PATCH_VERSION
2
#define CBOR_MINOR_VERSION 1
1
#define CBOR_PATCH_VERSION
0
#define CBOR_BUFFER_GROWTH 2
#define CBOR_MAX_STACK_SIZE 2048
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help