Skip to content

Commit a690448

Browse files
committed
chore(release): bump version to 0.5.0
1 parent 2de9f12 commit a690448

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@
44

55
### Added
66

7-
- Template overloads for string literals with compile-time length deduction (zero `strlen()` overhead)
8-
- Cross-platform `NFX_STRINGBUILDER_FORCE_INLINE` macro (MSVC `__forceinline`, GCC/Clang `__attribute__((always_inline))`)
7+
- NIL
98

109
### Changed
1110

12-
- Numeric append methods write directly to buffer with `std::to_chars`
13-
- Direct `m_buffer` pointer access eliminates helper method overhead
14-
- Move-optimized `toString() &&` overload for rvalue instances
15-
- Stack buffer aligned to 32 bytes for better compiler auto-vectorization
11+
- NIL
1612

1713
### Deprecated
1814

@@ -29,6 +25,20 @@
2925
### Security
3026

3127
- NIL
28+
29+
## [0.5.0] - 2026-01-27
30+
31+
### Added
32+
33+
- Template overloads for string literals with compile-time length deduction (zero `strlen()` overhead)
34+
- Cross-platform `NFX_STRINGBUILDER_FORCE_INLINE` macro (MSVC `__forceinline`, GCC/Clang `__attribute__((always_inline))`)
35+
36+
### Changed
37+
38+
- Numeric append methods write directly to buffer with `std::to_chars`
39+
- Direct `m_buffer` pointer access eliminates helper method overhead
40+
- Move-optimized `toString() &&` overload for rvalue instances
41+
- Stack buffer aligned to 32 bytes for better compiler auto-vectorization
3242

3343
## [0.4.1] - 2025-12-20
3444

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.4.1
12+
VERSION 0.5.0
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

0 commit comments

Comments
 (0)