summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2022-07-25 10:29:09 +0200
committerThomas Haller <thaller@redhat.com>2022-07-25 10:29:09 +0200
commit077d6503adc3dd6e949a25ae507e623b4220cca6 (patch)
tree48b7ffc56d0bcadaa4c45891b6628f660a2e340d
parent7450daa6092e9d9feb2200b33ef92a2c9f88051c (diff)
parente6229863593dcd8ec5905a5ecd86ae07a0ad72d8 (diff)
downloadNetworkManager-077d6503adc3dd6e949a25ae507e623b4220cca6.tar.gz
c-stdaux: re-import git-subtree for 'src/c-stdaux'
git subtree pull --prefix src/c-stdaux git@github.com:c-util/c-stdaux.git main --squash
-rw-r--r--src/c-stdaux/NEWS.md18
-rw-r--r--src/c-stdaux/meson.build2
2 files changed, 19 insertions, 1 deletions
diff --git a/src/c-stdaux/NEWS.md b/src/c-stdaux/NEWS.md
index 4954a47876..be824d664c 100644
--- a/src/c-stdaux/NEWS.md
+++ b/src/c-stdaux/NEWS.md
@@ -1,5 +1,23 @@
# c-stdaux - Auxiliary macros and functions for the C standard library
+## CHANGES WITH 1.2.0:
+
+ * Add c_memcmp() as a safe wrapper around memcmp(3) that supports
+ empty arenas as NULL pointers.
+
+ * Add an API documentation renderer based on the sphinx docutils
+ suite. The documentation is available on readthedocs.org.
+
+ * Drop stdatomic.h from the public includes. This was not used by
+ any of the dependent projects, but breaks builds on older GCC
+ compilers. While this is technically an API break, no breakage
+ has been discovered in our tests, and thus we deemed it reasonable
+ to proceed without version bump.
+
+ Contributions from: David Rheinsberg, Thomas Haller
+
+ - Dußlingen, 2022-07-22
+
## CHANGES WITH 1.1.0:
* Add c_memcpy() as a safe wrapper around memcpy(3) that supports
diff --git a/src/c-stdaux/meson.build b/src/c-stdaux/meson.build
index fb3217e61f..bf0da130fc 100644
--- a/src/c-stdaux/meson.build
+++ b/src/c-stdaux/meson.build
@@ -10,7 +10,7 @@ project(
],
license: 'Apache',
meson_version: '>=0.60.0',
- version: '1.1.0',
+ version: '1.2.0',
)
major = meson.project_version().split('.')[0]
project_description = 'Auxiliary macros and functions for the C standard library'