Skip to content

Commit

Permalink
Release 2.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
DNedic committed Jul 22, 2024
1 parent 8ab4b88 commit 89c5341
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.9
- Fixed the initialization order in the [Bipartite Buffer](docs/spsc/bipartite_buf.md) constructor
- Fixed missing include for the `std::pair` use in the [Bipartite Buffer](docs/spsc/bipartite_buf.md)

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

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.8
VERSION 2.0.9
LANGUAGES CXX
)

Expand Down
2 changes: 1 addition & 1 deletion lockfree/lockfree.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

#ifndef LOCKFREE_HPP
Expand Down
2 changes: 1 addition & 1 deletion lockfree/mpmc/priority_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/mpmc/priority_queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/mpmc/queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/mpmc/queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

namespace lockfree {
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/bipartite_buf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/bipartite_buf_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/priority_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/priority_queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

namespace lockfree {
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/ring_buf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/ring_buf_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.8
* Version: v2.0.9
**************************************************************/

namespace lockfree {
Expand Down

0 comments on commit 89c5341

Please sign in to comment.