]> granicus.if.org Git - libatomic_ops/commitdiff
[7.6.0] v7.6.0
authorIvan Maidanski <ivmai@mail.ru>
Fri, 19 May 2017 07:11:49 +0000 (10:11 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Fri, 19 May 2017 07:13:11 +0000 (10:13 +0300)
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
ChangeLog
README.md
appveyor.yml
configure.ac
src/Makefile.am
src/atomic_ops/ao_version.h

index 8c8c6b031991cd5efdf835108b989c7b83efb7af..b26d0f01354f47f1917e2eaa2afb62f8fe1d6416 100644 (file)
@@ -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
index cac136aa7febc1f5e5861467cda3e39ab33bc9c4..ab66c22fdc335381ee9c9d80e05739d86400d343 100644 (file)
--- 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)
index cd475268521600f35a9d5f2bd075b5da562f0cc6..41dd6a873f8824423f6600ffabf5f0c5995dd350 100644 (file)
--- 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
index 8135051dc9de05547cd27e4c7a80318127dfe523..092cc457ce90bad694a2b3606c3dbaad7441290f 100644 (file)
@@ -1,4 +1,4 @@
-version: 7.5.0-{build}
+version: 7.6.0-{build}
 
 clone_depth: 50
 
index 715d12db63b92a784356057afaba847820c6f189..506652210b156cd018ae11197701f1525a449d65 100644 (file)
@@ -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([])
index 592e072a0e75eb92d7f9b6efc5aa0f9f6b965a63..cc4bde75afa4128f052c03956261b6c64df2624d 100644 (file)
@@ -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
index 976b6cfa4c95b4e4657b6f349983bd9a67a441d4..4c12b92753c4aeb3c935e60eee40d718419a0f15 100644 (file)
@@ -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 */