Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 7.10.0-{build}
version: 7.11.0-{build}

image:
- Visual Studio 2022
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ jobs:
coverity_scan:
project:
name: bdwgc/libatomic_ops
version: 7.10.0
version: 7.11.0
notification_email: ivmai@mail.ru
branch_pattern: master
build_command_prepend: CFLAGS=-march=native ./configure
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@

cmake_minimum_required(VERSION 3.10)

set(PACKAGE_VERSION 7.10.0)
set(PACKAGE_VERSION 7.11.0)
# Version must match that in AC_INIT of configure.ac and that in README.
# Version must conform to: [0-9]+[.][0-9]+[.][0-9]+

# Info (current:revision:age) for the Libtool versioning system.
# These values should match those in src/Makefile.am.
set(LIBATOMIC_OPS_VER_INFO 4:0:3)
set(LIBATOMIC_OPS_GPL_VER_INFO 4:0:3)
set(LIBATOMIC_OPS_VER_INFO 5:0:4)
set(LIBATOMIC_OPS_GPL_VER_INFO 5:0:4)

project(libatomic_ops C)

Expand Down
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

== [7.11.0] (development) ==


== [7.10.0] 2025-11-28 ==

* Add comment that overflow of a counter in AO_stack_pop is impossible
Expand Down
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@
IN NEW CODE, PLEASE USE C11 OR C++14 STANDARD ATOMICS INSTEAD OF THE CORE
LIBRARY IN THIS PACKAGE.

This is version 7.10.0 of libatomic_ops.
[![Travis-CI build status](https://app.travis-ci.com/bdwgc/libatomic_ops.svg?branch=master)](https://app.travis-ci.com/github/bdwgc/libatomic_ops)
[![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)
[![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)
[![Coverage Status](https://coveralls.io/repos/github/bdwgc/libatomic_ops/badge.svg?branch=master)](https://coveralls.io/github/bdwgc/libatomic_ops?branch=master)
[![Coverity Scan build status](https://scan.coverity.com/projects/32089/badge.svg)](https://scan.coverity.com/projects/bdwgc-libatomic_ops)
[![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)
[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/6333/badge)](https://www.bestpractices.dev/projects/6333)
[![Hits-of-Code](https://hitsofcode.com/github/bdwgc/libatomic_ops?branch=master)](https://hitsofcode.com/github/bdwgc/libatomic_ops/view)
[![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)
[![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)
[![Packaging status](https://repology.org/badge/tiny-repos/libatomic-ops.svg)](https://repology.org/project/libatomic-ops/versions)

This is version 7.11.0 (next release development) of libatomic_ops.

License: [MIT](LICENSE) for core library / [GPL-2.0](COPYING) for gpl
extension.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

dnl Process this file with autoconf to produce configure.

AC_INIT([libatomic_ops],[7.10.0],https://github.com/bdwgc/libatomic_ops/issues)
AC_INIT([libatomic_ops],[7.11.0],https://github.com/bdwgc/libatomic_ops/issues)

AC_PREREQ(2.61)
AC_CANONICAL_TARGET([])
Expand Down
4 changes: 2 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Info (current:revision:age) for the Libtool versioning system.
# These numbers should be updated at most once just before the release,
# and, optionally, at most once during the development (after the release).
LIBATOMIC_OPS_VER_INFO = 4:0:3
LIBATOMIC_OPS_GPL_VER_INFO = 4:0:3
LIBATOMIC_OPS_VER_INFO = 5:0:4
LIBATOMIC_OPS_GPL_VER_INFO = 5:0:4

AM_CFLAGS=@PICFLAG@
AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src
Expand Down
4 changes: 2 additions & 2 deletions src/atomic_ops/ao_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@

/* The version here should match that in configure.ac and README. */
#define AO_VERSION_MAJOR 7
#define AO_VERSION_MINOR 10
#define AO_VERSION_MICRO 0 /* 7.10.0 */
#define AO_VERSION_MINOR 11
#define AO_VERSION_MICRO 0 /* 7.11.0 */