Skip to content

Commit 953e80e

Browse files
committed
[7.8.2]
Bump libatomic_ops version to 7.8.2. * ChangeLog (7.8.2): Set release date. * CMakeLists.txt (PACKAGE_VERSION): Bump micro version. * README.md: Likewise. * configure.ac (AC_INIT): Likewise. * src/atomic_ops/ao_version.h (AO_VERSION_MICRO): Likewise. * CMakeLists.txt (LIBATOMIC_OPS_GPL_VER_INFO): Increment revision (bump version info of libatomic_ops_gpl.so to 3:1:2). * src/Makefile.am (LIBATOMIC_OPS_GPL_VER_INFO): Likewise.
1 parent d482d3f commit 953e80e

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222

2323
cmake_minimum_required(VERSION 3.5)
2424

25-
set(PACKAGE_VERSION 7.8.0)
25+
set(PACKAGE_VERSION 7.8.2)
2626
# Version must match that in AC_INIT of configure.ac and that in README.
2727
# Version must conform to: [0-9]+[.][0-9]+[.][0-9]+
2828

2929
# Info (current:revision:age) for the Libtool versioning system.
3030
# These values should match those in src/Makefile.am.
3131
set(LIBATOMIC_OPS_VER_INFO 3:0:2)
32-
set(LIBATOMIC_OPS_GPL_VER_INFO 3:0:2)
32+
set(LIBATOMIC_OPS_GPL_VER_INFO 3:1:2)
3333

3434
project(libatomic_ops C)
3535

ChangeLog

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
== [7.8.2] (not released yet) ==
2+
== [7.8.2] 2023-12-15 ==
33

44
* Eliminate 'atomic_thread_fence is unsupported with tsan' gcc-11 warning
55
* Eliminate 'comparing signed/unsigned values' lcc warning in add_chunk_as

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
IN NEW CODE, PLEASE USE C11 OR C++14 STANDARD ATOMICS INSTEAD OF THE CORE
44
LIBRARY IN THIS PACKAGE.
55

6-
This is version 7.8.0 of libatomic_ops.
6+
This is version 7.8.2 of libatomic_ops.
77

88
License: [MIT](LICENSE) for core library / [GPL-2.0](COPYING) for gpl
99
extension.

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
dnl Process this file with autoconf to produce configure.
1414

15-
AC_INIT([libatomic_ops],[7.8.0],https://github.com/ivmai/libatomic_ops/issues)
15+
AC_INIT([libatomic_ops],[7.8.2],https://github.com/ivmai/libatomic_ops/issues)
1616

1717
AC_PREREQ(2.61)
1818
AC_CANONICAL_TARGET([])

src/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# These numbers should be updated at most once just before the release,
44
# and, optionally, at most once during the development (after the release).
55
LIBATOMIC_OPS_VER_INFO = 3:0:2
6-
LIBATOMIC_OPS_GPL_VER_INFO = 3:0:2
6+
LIBATOMIC_OPS_GPL_VER_INFO = 3:1:2
77

88
AM_CFLAGS=@PICFLAG@
99
AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src

src/atomic_ops/ao_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
/* The version here should match that in configure.ac and README. */
3636
#define AO_VERSION_MAJOR 7
3737
#define AO_VERSION_MINOR 8
38-
#define AO_VERSION_MICRO 0 /* 7.8.0 */
38+
#define AO_VERSION_MICRO 2 /* 7.8.2 */

0 commit comments

Comments
 (0)