From 18858c8c87bbc47b50a96accb5e8e11334b6f43a Mon Sep 17 00:00:00 2001 From: khizmax Date: Wed, 4 Jan 2017 09:53:53 +0300 Subject: [PATCH] Changed lib version --- CMakeLists.txt | 2 +- cds/version.h | 4 ++-- doxygen/cds.doxy | 2 +- tools/make_distrib.pl | 1 - 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 12412bb3..4848054a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ include(TargetArch) project(cds) -set(PROJECT_VERSION 2.2.0) +set(PROJECT_VERSION 2.3.0) # Options option(WITH_TESTS "Build unit tests" OFF) diff --git a/cds/version.h b/cds/version.h index bce0e14a..2f02da41 100644 --- a/cds/version.h +++ b/cds/version.h @@ -33,14 +33,14 @@ // cds library version -#define CDS_VERSION 0x020200 +#define CDS_VERSION 0x020300 #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.2.0" +#define CDS_VERSION_STRING "2.3.0" #endif // #ifndef CDSLIB_VERSION_H diff --git a/doxygen/cds.doxy b/doxygen/cds.doxy index 297ca0dc..81cfc8e9 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.2.0 +PROJECT_NUMBER = 2.3.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/tools/make_distrib.pl b/tools/make_distrib.pl index 1d8c5ab9..65d6af08 100644 --- a/tools/make_distrib.pl +++ b/tools/make_distrib.pl @@ -23,7 +23,6 @@ print "Remove $DistrDir/.git directory\n"; `rm -f $DistrDir/.gitignore $DistrDir/tools/brush_cds.pl $DistrDir/tools/make_distrib.pl $DistrDir/tools/make_distrib.bat $DistrDir/doxygen/images.odp`; print "patch files...\n"; -patch_file("$DistrDir/build/Makefile", 'VERSION=\d+\.\d+\.\d+', "VERSION=$Version" ); patch_file("$DistrDir/CMakeList.txt", 'PROJECT_VERSION \d+\.\d+\.\d+', "PROJECT_VERSION $Version" ); patch_file("$DistrDir/doxygen/cds.doxy", 'PROJECT_NUMBER\s*=\s*\d+\.\d+\.\d+', "PROJECT_NUMBER = $Version" ) ; -- 2.34.1