We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49f2b61 commit 1851976Copy full SHA for 1851976
2 files changed
CHANGELOG.md
@@ -26,6 +26,17 @@
26
27
- NIL
28
29
+## [0.4.1] - 2026-02-14
30
+
31
+### Changed
32
33
+- Enabled strict compiler warnings (`-Werror`, `/WX`) for GCC/Clang and MSVC builds
34
35
+### Fixed
36
37
+- Fixed MSVC warning by changing `friend struct` to `friend class` for `std::numeric_limits<Decimal>` specialization
38
+- Fixed static library output name to remove version suffix for consistent naming
39
40
## [0.4.0] - 2026-02-03
41
42
### Changed
CMakeLists.txt
@@ -9,7 +9,7 @@
9
cmake_minimum_required(VERSION 3.20)
10
11
project(nfx-datatypes
12
- VERSION 0.4.0
+ VERSION 0.4.1
13
DESCRIPTION "Cross-platform C++ library with high-precision Int128 and Decimal datatypes"
14
HOMEPAGE_URL "https://github.com/nfx-libs/nfx-datatypes"
15
LANGUAGES CXX
0 commit comments