Skip to content

Commit

Permalink
Changed version 2.4.0 -> 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
khizmax committed Dec 27, 2017
1 parent f1a36d5 commit 19af81b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include(TargetArch)

project(cds)

set(PROJECT_VERSION 2.4.0)
set(PROJECT_VERSION 2.3.2)

# Options
option(WITH_TESTS "Build unit tests" OFF)
Expand Down
4 changes: 2 additions & 2 deletions cds/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@

// cds library version

#define CDS_VERSION 0x020400
#define CDS_VERSION 0x020302

#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.2"

#endif // #ifndef CDSLIB_VERSION_H

4 changes: 3 additions & 1 deletion change.log
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
2.4.0
2.3.2 31.12.2017
Maintenance release
- Added: apply( Func f ) method to containers based on flat combining.
This method allows to execute any function over underlying container
in exclusive mode.
- Removed: -fno-strict-aliasing requirement
- Fixed: a serious bug in WeakRingBuffer::front()
- Fixed: memcpy bug in CuckooHash with store_hash feature

2.3.1 01.09.2017
Maintenance release
Expand Down
2 changes: 1 addition & 1 deletion doxygen/cds.doxy
Original file line number Diff line number Diff line change
Expand Up @@ -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.2

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
2 changes: 1 addition & 1 deletion doxygen/footer.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<hr/>
<div align="right">
<b>$projectname</b> <b>$projectnumber</b>
Developed by <i>Maxim Khizhinsky aka khizmax</i> 2007 - 2017
Developed by <i>Maxim Khizhinsky aka khizmax</a> and other contributors 2007 - 2017
<br/>
<i>Autogenerated $datetime by Doxygen $doxygenversion</i>
</div>
Expand Down

0 comments on commit 19af81b

Please sign in to comment.