Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DNedic committed May 18, 2023
1 parent 98d1c62 commit c6d6bd6
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 26 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.1.0
- Added the [Priority Queue](docs/priority_queue.md) data structure

## 1.0.2
- Made all class members accidentally public private
- Small doc fixes
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 1.0.2
VERSION 1.1.0
LANGUAGES CXX
)

Expand Down
4 changes: 2 additions & 2 deletions lockfree/inc/bipartite_buf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* microcontrollers to HPC machines.
* Lock-free for single consumer single producer scenarios.
* @version 1.2.0
* @date 18. May 2023
* @date 19. May 2023
* @author Djordje Nedic
**************************************************************/

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

/************************** INCLUDE ***************************/
Expand Down
4 changes: 2 additions & 2 deletions lockfree/inc/bipartite_buf_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 1.2.0
* @date 18. May 2023
* @date 19. May 2023
* @author Djordje Nedic
**************************************************************/

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

/************************** INCLUDE ***************************/
Expand Down
6 changes: 3 additions & 3 deletions lockfree/inc/lockfree.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
* @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 1.0.2
* @date 18. May 2023
* @version 1.1.0
* @date 19. May 2023
* @author Djordje Nedic
**************************************************************/

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

/************************** DEFINE ****************************/
Expand Down
6 changes: 3 additions & 3 deletions lockfree/inc/priority_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* c++11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 1.0.2
* @date 18. May 2023
* @version 1.1.0
* @date 19. May 2023
* @author Djordje Nedic
**************************************************************/

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

/************************** INCLUDE ***************************/
Expand Down
6 changes: 3 additions & 3 deletions lockfree/inc/priority_queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* c++11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 1.0.2
* @date 18. May 2023
* @version 1.1.0
* @date 19. May 2023
* @author Djordje Nedic
**************************************************************/

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

/************************** INCLUDE ***************************/
Expand Down
6 changes: 3 additions & 3 deletions lockfree/inc/queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 1.0.2
* @date 18. May 2023
* @version 1.1.0
* @date 19. May 2023
* @author Djordje Nedic
**************************************************************/

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

/************************** INCLUDE ***************************/
Expand Down
6 changes: 3 additions & 3 deletions lockfree/inc/queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 1.0.2
* @date 18. May 2023
* @version 1.1.0
* @date 19. May 2023
* @author Djordje Nedic
**************************************************************/

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

/********************** PUBLIC METHODS ************************/
Expand Down
6 changes: 3 additions & 3 deletions lockfree/inc/ring_buf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* c++11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 1.0.2
* @date 18. May 2023
* @version 1.1.0
* @date 19. May 2023
* @author Djordje Nedic
**************************************************************/

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

/************************** INCLUDE ***************************/
Expand Down
6 changes: 3 additions & 3 deletions lockfree/inc/ring_buf_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* c++11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 1.0.2
* @date 18. May 2023
* @version 1.1.0
* @date 19. May 2023
* @author Djordje Nedic
**************************************************************/

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

/********************** PUBLIC METHODS ************************/
Expand Down

0 comments on commit c6d6bd6

Please sign in to comment.