Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Unity-Technologies/libatomic_ops.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2017-12-24 10:52:13 +0300
committerIvan Maidanski <ivmai@mail.ru>2017-12-24 10:52:13 +0300
commit5ae4b4aeea2baf13752d07e3038c47f70f06dcac (patch)
treed6f669588ee8d9c430c4ba3e1de0e47f26159747
parent8a4a20a4531709a73236b849432504c0f236624a (diff)
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).
-rw-r--r--ChangeLog2
-rw-r--r--README.md2
-rw-r--r--appveyor.yml2
-rw-r--r--configure.ac2
-rw-r--r--src/Makefile.am2
-rw-r--r--src/atomic_ops/ao_version.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index b771cf5..f1814bf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/README.md b/README.md
index a3978eb..4b4a2d5 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/appveyor.yml b/appveyor.yml
index 092cc45..75035cb 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,4 +1,4 @@
-version: 7.6.0-{build}
+version: 7.6.x-{build}
clone_depth: 50
diff --git a/configure.ac b/configure.ac
index 983602a..f80bc4d 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],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([])
diff --git a/src/Makefile.am b/src/Makefile.am
index cc4bde7..dadc932 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -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
diff --git a/src/atomic_ops/ao_version.h b/src/atomic_ops/ao_version.h
index 4c12b92..f6a1119 100644
--- a/src/atomic_ops/ao_version.h
+++ b/src/atomic_ops/ao_version.h
@@ -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 */