From 18f9a14b4152b8fc3c7509704209af8df9b2e417 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Fri, 19 May 2017 23:44:13 +0300 Subject: [PATCH] Bump libatomic_ops version * README.md: Bump version to 7.7.0. * .travis.yml (addons.coverity_scan.project.version): Likewise. * appveyor.yml (version): 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. --- .travis.yml | 2 +- README.md | 7 ++++++- appveyor.yml | 2 +- configure.ac | 2 +- src/atomic_ops/ao_version.h | 4 ++-- 5 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index b26d0f0..1c3befc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ matrix: coverity_scan: project: name: ivmai/libatomic_ops - version: 7.6.0 + version: 7.7.0 notification_email: ivmai@mail.ru branch_pattern: master build_command_prepend: CFLAGS=-march=native ./configure diff --git a/README.md b/README.md index 41dd6a8..8d066c3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,12 @@ IN NEW CODE, PLEASE USE C11 OR C++14 STANDARD ATOMICS INSTEAD OF THIS PACKAGE. -This is version 7.6.0 of libatomic_ops. +[![Travis-CI build status](https://travis-ci.org/ivmai/libatomic_ops.svg?branch=master)](https://travis-ci.org/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) +[![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) + +This is version 7.7.0 (next release development) of libatomic_ops. ## Download diff --git a/appveyor.yml b/appveyor.yml index 092cc45..f09c60e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 7.6.0-{build} +version: 7.7.0-{build} clone_depth: 50 diff --git a/configure.ac b/configure.ac index 5066522..c3a8c12 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # Process this file with autoconf to produce a configure script. -AC_INIT([libatomic_ops],[7.6.0],bdwgc@lists.opendylan.org) +AC_INIT([libatomic_ops],[7.7.0],bdwgc@lists.opendylan.org) AC_PREREQ(2.61) AC_CANONICAL_TARGET([]) diff --git a/src/atomic_ops/ao_version.h b/src/atomic_ops/ao_version.h index 4c12b92..9390890 100644 --- a/src/atomic_ops/ao_version.h +++ b/src/atomic_ops/ao_version.h @@ -33,5 +33,5 @@ /* The version here should match that in configure.ac and README. */ #define AO_VERSION_MAJOR 7 -#define AO_VERSION_MINOR 6 -#define AO_VERSION_MICRO 0 /* 7.6.0 */ +#define AO_VERSION_MINOR 7 +#define AO_VERSION_MICRO 0 /* 7.7.0 */ -- 2.40.0