Skip to content

Commit c16ca65

Browse files
committed
Version 2024.05.31
1 parent b0ebcc2 commit c16ca65

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024.05.31
2+
- Added shared library version (ABI version 1.0.0)
3+
- Updated enum parameters to have `to_string`, `from_string`;
4+
deprecate `<enum>2str`, `str2<enum>`
5+
16
2023.11.05
27
- Improve set_default to reset value
38
- Add half precision

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ cmake_minimum_required( VERSION 3.15 )
1414

1515
project(
1616
testsweeper
17-
VERSION 2023.11.05
17+
VERSION 2024.05.31
1818
LANGUAGES CXX
1919
)
2020

testsweeper.hh

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
#include <type_traits>
1919

2020
// Version is updated by make_release.py; DO NOT EDIT.
21-
// Version 2023.11.05
22-
#define TESTSWEEPER_VERSION 20231105
21+
// Version 2024.05.31
22+
#define TESTSWEEPER_VERSION 20240531
2323

2424
namespace testsweeper {
2525

0 commit comments

Comments
 (0)