maintenance release 2.3.1
authorkhizmax <khizmax@gmail.com>
Tue, 29 Aug 2017 16:05:07 +0000 (19:05 +0300)
committerkhizmax <khizmax@gmail.com>
Tue, 29 Aug 2017 16:05:07 +0000 (19:05 +0300)
CMakeLists.txt
cds/version.h
change.log
doxygen/cds.doxy

index 8c6c125cce6aceeeaaf641a1155b9334275bf940..0e62b7abf25741e78007e170ec3c061db47fbcc7 100644 (file)
@@ -10,7 +10,7 @@ include(TargetArch)
 
 project(cds)
 
-set(PROJECT_VERSION 2.4.0)
+set(PROJECT_VERSION 2.3.1)
 
 # Options
 option(WITH_TESTS "Build unit tests" OFF)
index 9e8b8c3794f70ac55054e93197feb070003f3f67..d7aaf3c6b2ae9a9d97368bf417e00dcb758bb0e7 100644 (file)
 
 // cds library version
 
-#define CDS_VERSION        0x020400
+#define CDS_VERSION        0x020301
 
 #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.4.0"
+#define CDS_VERSION_STRING        "2.3.1"
 
 #endif  // #ifndef CDSLIB_VERSION_H
 
index 75d19a8bd20df30b1f0bd246a60e2eba3fbe6a52..6ac008d645dd836fa9e9c61d2cb482b1b07038ce 100644 (file)
@@ -1,4 +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,
       thanks to gtroxler (https://github.com/gtroxler)
     - Improved CMake scripts for simplifying libcds intergration with
index 1414d4e41e37210ec83ddcb1c096271e02d7b1e0..5cb1ae883a0cc7af0098a7192f6fd27b115f6e52 100644 (file)
@@ -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.4.0
+PROJECT_NUMBER         = 2.3.1
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
 # base path where the generated documentation will be put.