From e6229863593dcd8ec5905a5ecd86ae07a0ad72d8 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Mon, 25 Jul 2022 10:29:09 +0200 Subject: [PATCH] Squashed 'src/c-stdaux/' changes from ddd666b76654..4e78ffaea49d 4e78ffaea49d build: bump version to 1.2.0 git-subtree-dir: src/c-stdaux git-subtree-split: 4e78ffaea49dd10064be0b604b42062306de41bb --- NEWS.md | 18 ++++++++++++++++++ meson.build | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 4954a4787..be824d664 100644 --- a/NEWS.md +++ b/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/meson.build b/meson.build index fb3217e61..bf0da130f 100644 --- a/meson.build +++ b/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'