Skip to content

Commit 19af81b

Browse files
committed
Changed version 2.4.0 -> 2.3.2
1 parent f1a36d5 commit 19af81b

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include(TargetArch)
1010

1111
project(cds)
1212

13-
set(PROJECT_VERSION 2.4.0)
13+
set(PROJECT_VERSION 2.3.2)
1414

1515
# Options
1616
option(WITH_TESTS "Build unit tests" OFF)

cds/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@
3333

3434
// cds library version
3535

36-
#define CDS_VERSION 0x020400
36+
#define CDS_VERSION 0x020302
3737

3838
#define CDS_VERSION_MAJOR ((CDS_VERSION & 0xFF0000)>> 16)
3939
#define CDS_VERSION_MINOR ((CDS_VERSION & 0x00FF00) >> 8)
4040
#define CDS_VERSION_PATCH (CDS_VERSION & 0x0000FF)
4141

4242
// 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"
4444

4545
#endif // #ifndef CDSLIB_VERSION_H
4646

change.log

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
2.4.0
1+
2.3.2 31.12.2017
2+
Maintenance release
23
- Added: apply( Func f ) method to containers based on flat combining.
34
This method allows to execute any function over underlying container
45
in exclusive mode.
56
- Removed: -fno-strict-aliasing requirement
67
- Fixed: a serious bug in WeakRingBuffer::front()
8+
- Fixed: memcpy bug in CuckooHash with store_hash feature
79

810
2.3.1 01.09.2017
911
Maintenance release

doxygen/cds.doxy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ PROJECT_NAME = cds
3131
# This could be handy for archiving the generated documentation or
3232
# if some version control system is used.
3333

34-
PROJECT_NUMBER = 2.4.0
34+
PROJECT_NUMBER = 2.3.2
3535

3636
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
3737
# base path where the generated documentation will be put.

doxygen/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<hr/>
22
<div align="right">
33
<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
55
<br/>
66
<i>Autogenerated $datetime by Doxygen $doxygenversion</i>
77
</div>

0 commit comments

Comments
 (0)