Skip to content

Commit 650dd27

Browse files
committed
[7.10.0]
Bump libatomic_ops version to 7.10.0. * CMakeLists.txt (PACKAGE_VERSION): Bump version to 7.10.0. * .appveyor.yml (version): Likewise. * .travis.yml (addons.coverity_scan.project.version): Likewise. * ChangeLog (7.9.0): Likewise. * README.md: Likewise. * configure.ac (AC_INIT): Likewise. * src/atomic_ops/ao_version.h (AO_VERSION_MINOR): Likewise. * ChangeLog (7.10.0): Set release date. * README.md: Remove build status indicators for `master` branch. Note: update of LIBATOMIC_OPS_VER_INFO and LIBATOMIC_OPS_GPL_VER_INFO is not needed.
1 parent f29954c commit 650dd27

File tree

7 files changed

+8
-20
lines changed

7 files changed

+8
-20
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 7.9.0-{build}
1+
version: 7.10.0-{build}
22

33
image:
44
- Visual Studio 2022

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ jobs:
523523
coverity_scan:
524524
project:
525525
name: bdwgc/libatomic_ops
526-
version: 7.9.0
526+
version: 7.10.0
527527
notification_email: [email protected]
528528
branch_pattern: master
529529
build_command_prepend: CFLAGS=-march=native ./configure

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
cmake_minimum_required(VERSION 3.10)
2424

25-
set(PACKAGE_VERSION 7.9.0)
25+
set(PACKAGE_VERSION 7.10.0)
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

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
== [7.9.0] (development) ==
2+
== [7.10.0] 2025-11-28 ==
33

44
* Add comment that overflow of a counter in AO_stack_pop is impossible
55
* Add missed copyright header to ibmc/powerpc.h

README.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +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-
[![Travis-CI build status](https://app.travis-ci.com/bdwgc/libatomic_ops.svg?branch=master)](https://app.travis-ci.com/github/bdwgc/libatomic_ops)
7-
[![AppVeyor CI build status](https://ci.appveyor.com/api/projects/status/github/bdwgc/libatomic_ops?branch=master&svg=true)](https://ci.appveyor.com/project/bdwgc/libatomic-ops)
8-
[![GitHub Actions build status](https://github.com/bdwgc/libatomic_ops/actions/workflows/cmake-build.yml/badge.svg?event=push)](https://github.com/bdwgc/libatomic_ops/actions?query=branch%3Amaster)
9-
[![Coverage Status](https://coveralls.io/repos/github/bdwgc/libatomic_ops/badge.svg?branch=master)](https://coveralls.io/github/bdwgc/libatomic_ops?branch=master)
10-
[![Coverity Scan build status](https://scan.coverity.com/projects/32089/badge.svg)](https://scan.coverity.com/projects/bdwgc-libatomic_ops)
11-
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fbdwgc%2Flibatomic_ops.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fbdwgc%2Flibatomic_ops/refs/branch/master?ref=badge_shield)
12-
[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/6333/badge)](https://www.bestpractices.dev/projects/6333)
13-
[![Hits-of-Code](https://hitsofcode.com/github/bdwgc/libatomic_ops?branch=master)](https://hitsofcode.com/github/bdwgc/libatomic_ops/view)
14-
[![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/bdwgc/libatomic_ops)](https://shields.io/badges/git-hub-code-size-in-bytes)
15-
[![Github All Releases](https://img.shields.io/github/downloads/bdwgc/libatomic_ops/total.svg)](https://shields.io/badges/git-hub-downloads-all-assets-all-releases)
16-
[![Packaging status](https://repology.org/badge/tiny-repos/libatomic-ops.svg)](https://repology.org/project/libatomic-ops/versions)
17-
18-
This is version 7.9.0 (next release development) of libatomic_ops.
6+
This is version 7.10.0 of libatomic_ops.
197

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

configure.ac

Lines changed: 1 addition & 1 deletion
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.9.0],https://github.com/bdwgc/libatomic_ops/issues)
15+
AC_INIT([libatomic_ops],[7.10.0],https://github.com/bdwgc/libatomic_ops/issues)
1616

1717
AC_PREREQ(2.61)
1818
AC_CANONICAL_TARGET([])

src/atomic_ops/ao_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434

3535
/* The version here should match that in configure.ac and README. */
3636
#define AO_VERSION_MAJOR 7
37-
#define AO_VERSION_MINOR 9
38-
#define AO_VERSION_MICRO 0 /* 7.9.0 */
37+
#define AO_VERSION_MINOR 10
38+
#define AO_VERSION_MICRO 0 /* 7.10.0 */

0 commit comments

Comments
 (0)