From: khizmax <libcds.dev@gmail.com>
Date: Fri, 1 Sep 2017 06:27:28 +0000 (+0300)
Subject: version 2.4.0
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5ffc492ceb914f7bfde0a4813b3734f4054a69c1;p=libcds.git

version 2.4.0
---

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0e62b7ab..8c6c125c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -10,7 +10,7 @@ include(TargetArch)
 
 project(cds)
 
-set(PROJECT_VERSION 2.3.1)
+set(PROJECT_VERSION 2.4.0)
 
 # Options
 option(WITH_TESTS "Build unit tests" OFF)
diff --git a/cds/version.h b/cds/version.h
index d7aaf3c6..59f8dabf 100644
--- a/cds/version.h
+++ b/cds/version.h
@@ -33,14 +33,14 @@
 
 // cds library version
 
-#define CDS_VERSION        0x020301
+#define CDS_VERSION        0x020400
 
 #define CDS_VERSION_MAJOR  ((CDS_VERSION & 0xFF0000)>> 16)
 #define CDS_VERSION_MINOR  ((CDS_VERSION & 0x00FF00) >> 8)
 #define CDS_VERSION_PATCH  (CDS_VERSION & 0x0000FF)
 
 // CDS_VERSION == CDS_VERSION_MAJOR '.' CDS_VERSION_MINOR '.' CDS_VERSION_PATCH
-#define CDS_VERSION_STRING        "2.3.1"
+#define CDS_VERSION_STRING        "2.4.0
 
 #endif  // #ifndef CDSLIB_VERSION_H
 
diff --git a/change.log b/change.log
index 6ac008d6..e81eabfe 100644
--- a/change.log
+++ b/change.log
@@ -1,3 +1,5 @@
+2.4.0
+
 2.3.1 01.09.2017
     Maintenance release
     - issue #81: bug in gc::DHP when extending thread's retired array,
diff --git a/doxygen/cds.doxy b/doxygen/cds.doxy
index 5cb1ae88..1414d4e4 100644
--- a/doxygen/cds.doxy
+++ b/doxygen/cds.doxy
@@ -31,7 +31,7 @@ PROJECT_NAME           = cds
 # This could be handy for archiving the generated documentation or 
 # if some version control system is used.
 
-PROJECT_NUMBER         = 2.3.1
+PROJECT_NUMBER         = 2.4.0
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
 # base path where the generated documentation will be put.