diff options
author | Ivan Maidanski <ivmai@mail.ru> | 2023-03-28 08:42:33 +0300 |
---|---|---|
committer | Ivan Maidanski <ivmai@mail.ru> | 2023-03-28 08:42:33 +0300 |
commit | 92435d45beeaab3ea269190c0f6c5d77e6f1d710 (patch) | |
tree | 96d1237668fb47673b88f9cc34102f9f3871bd3d | |
parent | cc8e83a1f25f38054c721a1a7e6f9195104f94a4 (diff) | |
download | libatomic_ops-92435d45beeaab3ea269190c0f6c5d77e6f1d710.tar.gz |
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.
-rw-r--r-- | .appveyor.yml | 2 | ||||
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | README.md | 15 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | 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]+ @@ -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. +[](https://app.travis-ci.com/github/ivmai/libatomic_ops) +[](https://ci.appveyor.com/project/ivmai/libatomic-ops) +[](https://codecov.io/github/ivmai/libatomic_ops?branch=master) +[](https://coveralls.io/github/ivmai/libatomic_ops) +[](https://scan.coverity.com/projects/ivmai-libatomic_ops) +[](https://app.fossa.com/projects/git%2Bgithub.com%2Fivmai%2Flibatomic_ops?ref=badge_shield) +[](https://bestpractices.coreinfrastructure.org/projects/6333) +[](https://hitsofcode.com/github/ivmai/libatomic_ops/view) +[](https://shields.io/category/size) +[](https://shields.io/category/size) +[](https://shields.io/category/downloads) +[](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 */ |