File tree Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ include(TargetArch)
10
10
11
11
project (cds)
12
12
13
- set (PROJECT_VERSION 2.4.0 )
13
+ set (PROJECT_VERSION 2.3.2 )
14
14
15
15
# Options
16
16
option (WITH_TESTS "Build unit tests" OFF )
Original file line number Diff line number Diff line change 33
33
34
34
// cds library version
35
35
36
- #define CDS_VERSION 0x020400
36
+ #define CDS_VERSION 0x020302
37
37
38
38
#define CDS_VERSION_MAJOR ((CDS_VERSION & 0xFF0000)>> 16)
39
39
#define CDS_VERSION_MINOR ((CDS_VERSION & 0x00FF00) >> 8)
40
40
#define CDS_VERSION_PATCH (CDS_VERSION & 0x0000FF)
41
41
42
42
// CDS_VERSION == CDS_VERSION_MAJOR '.' CDS_VERSION_MINOR '.' CDS_VERSION_PATCH
43
- #define CDS_VERSION_STRING "2.4.0 "
43
+ #define CDS_VERSION_STRING "2.3.2 "
44
44
45
45
#endif // #ifndef CDSLIB_VERSION_H
46
46
Original file line number Diff line number Diff line change 1
- 2.4.0
1
+ 2.3.2 31.12.2017
2
+ Maintenance release
2
3
- Added: apply( Func f ) method to containers based on flat combining.
3
4
This method allows to execute any function over underlying container
4
5
in exclusive mode.
5
6
- Removed: -fno-strict-aliasing requirement
6
7
- Fixed: a serious bug in WeakRingBuffer::front()
8
+ - Fixed: memcpy bug in CuckooHash with store_hash feature
7
9
8
10
2.3.1 01.09.2017
9
11
Maintenance release
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ PROJECT_NAME = cds
31
31
# This could be handy for archiving the generated documentation or
32
32
# if some version control system is used.
33
33
34
- PROJECT_NUMBER = 2.4.0
34
+ PROJECT_NUMBER = 2.3.2
35
35
36
36
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
37
37
# base path where the generated documentation will be put.
Original file line number Diff line number Diff line change 1
1
< hr />
2
2
< div align ="right ">
3
3
< b > $projectname</ b > < b > $projectnumber</ b >
4
- Developed by < i > Maxim Khizhinsky aka khizmax</ i > 2007 - 2017
4
+ Developed by < i > Maxim Khizhinsky aka khizmax</ a > and other contributors 2007 - 2017
5
5
< br />
6
6
< i > Autogenerated $datetime by Doxygen $doxygenversion</ i >
7
7
</ div >
You can’t perform that action at this time.
0 commit comments