Skip to content

Commit 6db440a

Browse files
committed
chore(release): bump version to 0.6.1
1 parent df71b9d commit 6db440a

4 files changed

Lines changed: 13 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,16 @@
2626

2727
- NIL
2828

29+
## [0.6.1] - 2026-02-14
30+
31+
### Changed
32+
33+
- build: enforce strict compiler warnings (`-Wall -Wextra -Werror` for GCC/Clang, `/W4 /WX` for MSVC)
34+
35+
### Fixed
36+
37+
- Missing `#include <array>` in `samples/Sample_StringBuilder.cpp`
38+
2939
## [0.6.0] - 2026-02-11
3040

3141
### 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-stringbuilder
12-
VERSION 0.6.0
12+
VERSION 0.6.1
1313
DESCRIPTION "Cross-platform C++20 library for zero-allocation string building with Small Buffer Optimization"
1414
HOMEPAGE_URL "https://github.com/nfx-libs/nfx-stringbuilder"
1515
LANGUAGES CXX

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ endif()
7171
set(test_sources "")
7272

7373
list(APPEND test_sources
74-
TESTS_StringBuilder.cpp
74+
Tests_StringBuilder.cpp
7575
)
7676

7777
#----------------------------------------------
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*/
2424

2525
/**
26-
* @file TESTS_StringBuilder.cpp
26+
* @file Tests_StringBuilder.cpp
2727
* @brief UNit tests for nfx-stringbuilder high-performance string building
2828
* @details Tests covering StringBuilder functionality including construction, capacity management,
2929
* data access, append operations, formatting, string conversion, and iterators

0 commit comments

Comments
 (0)