Skip to content

Commit 1f00790

Browse files
chore(release): bump version to 0.3.0
1 parent cc4c0a5 commit 1f00790

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3131

3232
- NIL
3333

34+
## [0.3.0] - 2026-02-14
35+
36+
### Added
37+
38+
- **Strict Compiler Warnings**: Enabled comprehensive warning flags for all compilers
39+
- GCC/Clang: `-Wall -Wextra -Werror` (treat warnings as errors)
40+
- MSVC: `/W4 /WX` (warning level 4, treat warnings as errors)
41+
- Improved code quality enforcement at compile time
42+
3443
## [0.2.0] - 2026-02-08
3544

3645
### Added

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
cmake_minimum_required(VERSION 3.20)
1010

1111
project(nfx-hashing
12-
VERSION 0.2.0
12+
VERSION 0.3.0
1313
DESCRIPTION "Modern C++20 header-only hashing library with hardware acceleration"
1414
HOMEPAGE_URL "https://github.com/nfx-libs/nfx-hashing"
1515
LANGUAGES CXX

cmake/nfxHashingInstall.cmake

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#----------------------------------------------
88

99
if(NOT NFX_HASHING_INSTALL_PROJECT)
10-
message(STATUS "Installation disabled, skipping...")
1110
return()
1211
endif()
1312

@@ -137,7 +136,7 @@ if(NFX_HASHING_BUILD_DOCUMENTATION)
137136
OPTIONAL
138137
COMPONENT Documentation
139138
)
140-
139+
141140
if(WIN32)
142141
# Install Windows .cmd batch file
143142
install(

cmake/nfxHashingPackaging.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ if(NOT NFX_HASHING_PACKAGE_SOURCE
1111
AND NOT NFX_HASHING_PACKAGE_DEB
1212
AND NOT NFX_HASHING_PACKAGE_RPM
1313
AND NOT NFX_HASHING_PACKAGE_WIX)
14-
message(STATUS "Packaging disabled (all options OFF), skipping...")
1514
return()
1615
endif()
1716

0 commit comments

Comments
 (0)