Skip to content

Commit

Permalink
Version bump to 1.4
Browse files Browse the repository at this point in the history
Summary: Bump version, and update changelog

Reviewed By: RomanFedotovFB

Differential Revision: D67765764

fbshipit-source-id: 1b1f4eae741aec956ba1c772662888cb861598f5
  • Loading branch information
graphicsMan authored and facebook-github-bot committed Jan 2, 2025
1 parent 2251f02 commit f5d0dc5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
1.4 (January 2, 2025)

### Efficiency improvements, bug and warning fixes
* Added some benchmarks and comparison with TaskFlow (thanks andre-nguyen!)
* Fixed compilation when compiling with DISPENSO_DEBUG (thanks EscapeZero!)
* Improved efficiency on Linux for infrequent thread pool usage. Reduces polling overhead by 10x by switching to event-based wakeup instead of spin polling.
* Fix C++20 compilation issues (thanks aavbsouza!)
* Fix several build warnings (thanks SeaOtocinclus!)
* Add conda package badge, disable gtest install (thanks JeongSeok Lee!)
* Solved rare post-main shutdown issues with NewThreadInvoker
* Fixed test issues for 32-bit builds
* Fixed broken test logic for test thread IDs
* Fixed various build warnings

1.3 (April 25, 2024)

### Bug fixes, portability enhancements, and small functionality enhancements
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
cmake_minimum_required(VERSION 3.12)
project(
Dispenso
VERSION 1.3.0
VERSION 1.4.0
DESCRIPTION "Dispenso is a library for working with sets of parallel tasks"
LANGUAGES CXX)

Expand Down
2 changes: 1 addition & 1 deletion dispenso/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
namespace dispenso {

#define DISPENSO_MAJOR_VERSION 1
#define DISPENSO_MINOR_VERSION 3
#define DISPENSO_MINOR_VERSION 4

#if defined(DISPENSO_SHARED_LIB)
#if defined _WIN32
Expand Down

0 comments on commit f5d0dc5

Please sign in to comment.