Skip to content

Commit

Permalink
[7.6.2]
Browse files Browse the repository at this point in the history
Bump libatomic_ops version to 7.6.2

* ChangeLog (7.6.2): Add release date.
* README.md: Bump micro version.
* configure.ac (AC_INIT): Likewise.
* src/atomic_ops/ao_version.h (AO_VERSION_MICRO): Likewise.
* appveyor.yml (version): Change "7.6.0" to "7.6.x".
* src/Makefile.am (LIBATOMIC_OPS_GPL_VER_INFO): Increment revision
(bump version info of libatomic_ops_gpl.so to 2:2:1).
  • Loading branch information
ivmai committed Dec 24, 2017
1 parent 8a4a20a commit 5ae4b4a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

== [7.6.2] (date not set) ==
== [7.6.2] 2017-12-24 ==

* Allow to alter DEFAULT/MAX_NTHREADS values in test_malloc/stack
* Allow to select almost-non-blocking stack implementation explicitly
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

IN NEW CODE, PLEASE USE C11 OR C++14 STANDARD ATOMICS INSTEAD OF THIS PACKAGE.

This is version 7.6.0 of libatomic_ops.
This is version 7.6.2 of libatomic_ops.


## Download
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 7.6.0-{build}
version: 7.6.x-{build}

clone_depth: 50

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
AC_INIT([libatomic_ops],[7.6.0],https://github.com/ivmai/libatomic_ops/issues)
AC_INIT([libatomic_ops],[7.6.2],https://github.com/ivmai/libatomic_ops/issues)

AC_PREREQ(2.61)
AC_CANONICAL_TARGET([])
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# 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:1:1
LIBATOMIC_OPS_GPL_VER_INFO = 2:1:1
LIBATOMIC_OPS_GPL_VER_INFO = 2:2:1

AM_CFLAGS=@PICFLAG@
AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src
Expand Down
2 changes: 1 addition & 1 deletion src/atomic_ops/ao_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
/* 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_MICRO 2 /* 7.6.2 */

0 comments on commit 5ae4b4a

Please sign in to comment.