From 73c60c5ef1ed370111549ee5aab6d4020ba70ed4 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Fri, 19 May 2017 10:11:49 +0300 Subject: [PATCH] [7.6.0] Bump libatomic_ops version to 7.6.0 * ChangeLog (7.5.0): Bump version (to 7.6.0). * .travis.yml (addons.coverity_scan.project.version): Likewise. * README.md: Likewise. * appveyor.yml (version): Likewise. * configure.ac (AC_INIT): Likewise. * src/atomic_ops/ao_version.h (AO_VERSION_MINOR): Likewise. * ChangeLog (7.6.0, 7.4.6): Add release date. * README.md: Remove build status indicators for "master" branch. * src/Makefile.am (LIBATOMIC_OPS_GPL_VER_INFO): Change to 2:1:1 (increment revision number) because libatomic_ops_gpl.so implementation has been updated (since the last change of the version info). * src/Makefile.am (LIBATOMIC_OPS_VER_INFO): Change to 2:1:1 (just to stay aligned with LIBATOMIC_OPS_GPL_VER_INFO). --- .travis.yml | 2 +- ChangeLog | 4 ++-- README.md | 7 +------ appveyor.yml | 2 +- configure.ac | 2 +- src/Makefile.am | 4 ++-- src/atomic_ops/ao_version.h | 4 ++-- 7 files changed, 10 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8c8c6b0..b26d0f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ matrix: coverity_scan: project: name: ivmai/libatomic_ops - version: 7.5.0 + version: 7.6.0 notification_email: ivmai@mail.ru branch_pattern: master build_command_prepend: CFLAGS=-march=native ./configure diff --git a/ChangeLog b/ChangeLog index cac136a..ab66c22 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,5 @@ -== [7.5.0] (development) == +== [7.6.0] 2017-05-19 == * Add *_and/or/xor* and *_[fetch_]compare_and_swap* tests to test_atomic * Add asm-based and/or/xor implementation for char/short/int (gcc/x86) @@ -67,7 +67,7 @@ Also, includes 7.4.6 changes -== [7.4.6] (unset) == +== [7.4.6] 2017-05-18 == * Add assertion that double-wide CAS target is aligned (msftc/x86[_64]) * Add configure --enable-gcov option (enable code coverage analysis) diff --git a/README.md b/README.md index cd47526..41dd6a8 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,7 @@ IN NEW CODE, PLEASE USE C11 OR C++14 STANDARD ATOMICS INSTEAD OF THIS PACKAGE. -[![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.5.0 (next release development) of libatomic_ops. +This is version 7.6.0 of libatomic_ops. ## Download diff --git a/appveyor.yml b/appveyor.yml index 8135051..092cc45 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 7.5.0-{build} +version: 7.6.0-{build} clone_depth: 50 diff --git a/configure.ac b/configure.ac index 715d12d..5066522 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.5.0],bdwgc@lists.opendylan.org) +AC_INIT([libatomic_ops],[7.6.0],bdwgc@lists.opendylan.org) AC_PREREQ(2.61) AC_CANONICAL_TARGET([]) diff --git a/src/Makefile.am b/src/Makefile.am index 592e072..cc4bde7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 = 2:0:1 -LIBATOMIC_OPS_GPL_VER_INFO = 2:0:1 +LIBATOMIC_OPS_VER_INFO = 2:1:1 +LIBATOMIC_OPS_GPL_VER_INFO = 2:1:1 AM_CFLAGS=@PICFLAG@ AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src diff --git a/src/atomic_ops/ao_version.h b/src/atomic_ops/ao_version.h index 976b6cf..4c12b92 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 5 -#define AO_VERSION_MICRO 0 /* 7.5.0 */ +#define AO_VERSION_MINOR 6 +#define AO_VERSION_MICRO 0 /* 7.6.0 */ -- 2.40.0