From 92435d45beeaab3ea269190c0f6c5d77e6f1d710 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Tue, 28 Mar 2023 08:42:33 +0300 Subject: Bump libatomic_ops version to 7.9.0 (next release development) * CMakeLists.txt (PACKAGE_VERSION): Bump version to 7.9.0. * .appveyor.yml (version): Likewise. * .travis.yml (env.addons.coverity_scan.project.version): Likewise. * README.md: Likewise. * configure.ac (AC_INIT): Likewise. * src/atomic_ops/ao_version.h (AO_VERSION_MINOR): Likewise. * README.md: Add back the build status indicators for "master" branch. --- .appveyor.yml | 2 +- .travis.yml | 2 +- CMakeLists.txt | 2 +- README.md | 15 ++++++++++++++- configure.ac | 2 +- src/atomic_ops/ao_version.h | 4 ++-- 6 files changed, 20 insertions(+), 7 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 509a981..6792d4c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: 7.8.x-{build} +version: 7.9.0-{build} image: - Visual Studio 2019 diff --git a/.travis.yml b/.travis.yml index 5ec0276..dc50eee 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ jobs: coverity_scan: project: name: ivmai/libatomic_ops - version: 7.8.0 + version: 7.9.0 notification_email: ivmai@mail.ru branch_pattern: master build_command_prepend: CFLAGS=-march=native ./configure diff --git a/CMakeLists.txt b/CMakeLists.txt index df1b635..3e19950 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ cmake_minimum_required(VERSION 3.1) -set(PACKAGE_VERSION 7.8.0) +set(PACKAGE_VERSION 7.9.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]+ diff --git a/README.md b/README.md index 87074f6..5cc5291 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,20 @@ IN NEW CODE, PLEASE USE C11 OR C++14 STANDARD ATOMICS INSTEAD OF THE CORE LIBRARY IN THIS PACKAGE. -This is version 7.8.0 of libatomic_ops. +[![Travis-CI build status](https://app.travis-ci.com/ivmai/libatomic_ops.svg?branch=master)](https://app.travis-ci.com/github/ivmai/libatomic_ops) +[![AppVeyor CI build status](https://ci.appveyor.com/api/projects/status/github/ivmai/libatomic_ops?branch=master&svg=true)](https://ci.appveyor.com/project/ivmai/libatomic-ops) +[![Codecov.io](https://codecov.io/github/ivmai/libatomic_ops/coverage.svg?branch=master)](https://codecov.io/github/ivmai/libatomic_ops?branch=master) +[![Coveralls test coverage status](https://coveralls.io/repos/ivmai/libatomic_ops/badge.png?branch=master)](https://coveralls.io/github/ivmai/libatomic_ops) +[![Coverity Scan build status](https://scan.coverity.com/projects/10809/badge.svg)](https://scan.coverity.com/projects/ivmai-libatomic_ops) +[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fivmai%2Flibatomic_ops.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fivmai%2Flibatomic_ops?ref=badge_shield) +[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/6333/badge)](https://bestpractices.coreinfrastructure.org/projects/6333) +[![Hits-of-Code](https://hitsofcode.com/github/ivmai/libatomic_ops?branch=master)](https://hitsofcode.com/github/ivmai/libatomic_ops/view) +[![Lines of code](https://img.shields.io/tokei/lines/github/ivmai/libatomic_ops)](https://shields.io/category/size) +[![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/ivmai/libatomic_ops)](https://shields.io/category/size) +[![Github All Releases](https://img.shields.io/github/downloads/ivmai/libatomic_ops/total.svg)](https://shields.io/category/downloads) +[![Packaging status](https://repology.org/badge/tiny-repos/libatomic-ops.svg)](https://repology.org/project/libatomic-ops/versions) + +This is version 7.9.0 (next release development) of libatomic_ops. License: [MIT](LICENSE) for core library / [GPL-2.0](COPYING) for gpl extension. diff --git a/configure.ac b/configure.ac index 9a30996..d5ccf19 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ dnl Process this file with autoconf to produce configure. -AC_INIT([libatomic_ops],[7.8.0],https://github.com/ivmai/libatomic_ops/issues) +AC_INIT([libatomic_ops],[7.9.0],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 c0345f2..ca08475 100644 --- a/src/atomic_ops/ao_version.h +++ b/src/atomic_ops/ao_version.h @@ -34,5 +34,5 @@ /* The version here should match that in configure.ac and README. */ #define AO_VERSION_MAJOR 7 -#define AO_VERSION_MINOR 8 -#define AO_VERSION_MICRO 0 /* 7.8.0 */ +#define AO_VERSION_MINOR 9 +#define AO_VERSION_MICRO 0 /* 7.9.0 */ -- cgit v1.2.1