Skip to content

Commit

Permalink
Release 2.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
DNedic committed Jan 19, 2025
1 parent 23a3047 commit 7fd11ab
Show file tree
Hide file tree
Showing 16 changed files with 31 additions and 28 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.10
- Added a missing include in the [Ring Buffer](docs/spsc/ring_buf.md) causing errors for `memcpy use

## 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)
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.9
VERSION 2.0.10
LANGUAGES CXX
)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Djordje Nedic
Copyright (c) 2023-2025 Djordje Nedic

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions lockfree/lockfree.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

#ifndef LOCKFREE_HPP
Expand Down
4 changes: 2 additions & 2 deletions lockfree/mpmc/priority_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
4 changes: 2 additions & 2 deletions lockfree/mpmc/priority_queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
4 changes: 2 additions & 2 deletions lockfree/mpmc/queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
4 changes: 2 additions & 2 deletions lockfree/mpmc/queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

namespace lockfree {
Expand Down
4 changes: 2 additions & 2 deletions lockfree/spsc/bipartite_buf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
4 changes: 2 additions & 2 deletions lockfree/spsc/bipartite_buf_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
4 changes: 2 additions & 2 deletions lockfree/spsc/priority_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
4 changes: 2 additions & 2 deletions lockfree/spsc/priority_queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
4 changes: 2 additions & 2 deletions lockfree/spsc/queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
4 changes: 2 additions & 2 deletions lockfree/spsc/queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

namespace lockfree {
Expand Down
4 changes: 2 additions & 2 deletions lockfree/spsc/ring_buf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
4 changes: 2 additions & 2 deletions lockfree/spsc/ring_buf_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
**************************************************************/

/**************************************************************
* Copyright (c) 2023 Djordje Nedic
* Copyright (c) 2023-2025 Djordje Nedic
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated
Expand All @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.9
* Version: v2.0.10
**************************************************************/

#include <cstring>
Expand Down

0 comments on commit 7fd11ab

Please sign in to comment.