From 0cd408713432b00d5971f1cb5c0d9ffb4a655492 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Fri, 15 Dec 2023 22:04:39 +0300 Subject: [PATCH] [7.4.20] Bump libatomic_ops version to 7.4.20 * ChangeLog (7.4.20): Set release date. * README.md: Bump micro version. * configure.ac (AC_INIT): Likewise. * src/atomic_ops/ao_version.h (AO_VERSION_MICRO): Likewise. --- ChangeLog | 2 +- README.md | 2 +- configure.ac | 2 +- src/atomic_ops/ao_version.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index fdeef3a6..76341daa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,5 @@ -== [7.4.20] (not released yet) == +== [7.4.20] 2023-12-15 == * Eliminate 'comparing signed/unsigned values' lcc warning in add_chunk_as * Fix get_chunk for case of mmap area is located before AO_initial_heap diff --git a/README.md b/README.md index 9a8b56a4..c912ecb1 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ IN NEW CODE, PLEASE USE C11 OR C++14 STANDARD ATOMICS INSTEAD OF THIS PACKAGE. -This is version 7.4.18 of libatomic_ops. +This is version 7.4.20 of libatomic_ops. ## Download diff --git a/configure.ac b/configure.ac index db3d3dec..a6c191c8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # Process this file with autoconf to produce a configure script. -AC_INIT([libatomic_ops],[7.4.18],https://github.com/ivmai/libatomic_ops/issues) +AC_INIT([libatomic_ops],[7.4.20],https://github.com/ivmai/libatomic_ops/issues) AC_PREREQ(2.61) AC_CANONICAL_TARGET([]) diff --git a/src/atomic_ops/ao_version.h b/src/atomic_ops/ao_version.h index 468211c0..2a1125ae 100644 --- a/src/atomic_ops/ao_version.h +++ b/src/atomic_ops/ao_version.h @@ -34,4 +34,4 @@ /* The version here should match that in configure.ac and README. */ #define AO_VERSION_MAJOR 7 #define AO_VERSION_MINOR 4 -#define AO_VERSION_MICRO 18 /* 7.4.18 */ +#define AO_VERSION_MICRO 20 /* 7.4.20 */