From 5ffc492ceb914f7bfde0a4813b3734f4054a69c1 Mon Sep 17 00:00:00 2001 From: khizmax Date: Fri, 1 Sep 2017 09:27:28 +0300 Subject: [PATCH] version 2.4.0 --- CMakeLists.txt | 2 +- cds/version.h | 4 ++-- change.log | 2 ++ doxygen/cds.doxy | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) 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. -- 2.34.1