Skip to content

Commit

Permalink
change: Release 2.0.6 and remove redundant info from file headers
Browse files Browse the repository at this point in the history
  • Loading branch information
DNedic committed Dec 20, 2023
1 parent 3bfac56 commit 9046fea
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 53 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.0.6
- Added a performance optimization in the [Bipartite Buffer](docs/spsc/bipartite_buf.md), where the atomic read index load can be avoided after reading wraps

## 2.0.5

- A linear space calculation bug in the [Bipartite Buffer](docs/spsc/bipartite_buf.md) that could cause data corruption in builds without asserts enabled was fixed
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
cmake_minimum_required(VERSION 3.16)

project(lockfree
VERSION 2.0.5
VERSION 2.0.6
LANGUAGES CXX
)

Expand Down
5 changes: 1 addition & 4 deletions lockfree/lockfree.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
* @brief A collection of lock free data structures written in
* standard c++11 suitable for all systems, from low-end
* microcontrollers to HPC machines.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -36,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

#ifndef LOCKFREE_HPP
Expand Down
5 changes: 1 addition & 4 deletions lockfree/mpmc/priority_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
* @brief A priority queue implementation written in standard
* c++11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for all scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -36,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
5 changes: 1 addition & 4 deletions lockfree/mpmc/priority_queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
* @brief A priority queue implementation written in standard
* c++11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for all scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -36,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
5 changes: 1 addition & 4 deletions lockfree/mpmc/queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
* @brief A queue implementation written in standard c++11
* suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for all scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -36,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
5 changes: 1 addition & 4 deletions lockfree/mpmc/queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
* @brief A queue implementation written in standard c++11
* suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for all scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -36,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

namespace lockfree {
Expand Down
5 changes: 1 addition & 4 deletions lockfree/spsc/bipartite_buf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
* standard c++11 suitable for all systems, from low-end
* microcontrollers to HPC machines.
* Lock-free for single consumer single producer scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -37,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
5 changes: 1 addition & 4 deletions lockfree/spsc/bipartite_buf_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
* c++11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -37,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
5 changes: 1 addition & 4 deletions lockfree/spsc/priority_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
* c++11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -37,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
5 changes: 1 addition & 4 deletions lockfree/spsc/priority_queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
* c++11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -37,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
5 changes: 1 addition & 4 deletions lockfree/spsc/queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
* suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -37,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
5 changes: 1 addition & 4 deletions lockfree/spsc/queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
* suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -37,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

namespace lockfree {
Expand Down
5 changes: 1 addition & 4 deletions lockfree/spsc/ring_buf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
* c++11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -37,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
5 changes: 1 addition & 4 deletions lockfree/spsc/ring_buf_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
* c++11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 2.0.5
* @date 7. December 2023
* @author Djordje Nedic
**************************************************************/

/**************************************************************
Expand Down Expand Up @@ -37,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.5
* Version: v2.0.6
**************************************************************/

namespace lockfree {
Expand Down

0 comments on commit 9046fea

Please sign in to comment.