From 3f7f216c92982841b6d4c503c6eaf8be3f7adc29 Mon Sep 17 00:00:00 2001 From: anth64 Date: Sat, 14 Feb 2026 17:25:20 +0100 Subject: [PATCH] chore: bump version to 0.1.1 and update documentation --- CHANGELOG.md | 11 ++++++++++- README.md | 2 +- include/stk_version.h | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 675be36..1e88536 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1] - 2026-02-15 + +### Fixed +- **Logging**: Corrected log level severity order in enum + - Reversed order so DEBUG (0) < INFO (1) < WARN (2) < ERROR (3) + - Fixes filtering logic where ERROR/WARN were incorrectly blocked + - Default INFO level now properly shows INFO, WARN, and ERROR while filtering DEBUG + ## [0.1.0] - 2026-02-15 ### Fixed @@ -84,7 +92,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Dependency management and versioning not yet implemented - API is unstable and subject to change in future releases -[Unreleased]: https://github.com/anth64/stk/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/anth64/stk/compare/v0.1.1...HEAD +[0.1.1]: https://github.com/anth64/stk/releases/tag/v0.1.1 [0.1.0]: https://github.com/anth64/stk/releases/tag/v0.1.0 [0.0.4]: https://github.com/anth64/stk/releases/tag/v0.0.4 [0.0.3]: https://github.com/anth64/stk/releases/tag/v0.0.3 diff --git a/README.md b/README.md index 895e967..c06b3c6 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ stk_init(); ## Project Status -**Current Version:** 0.1.0 (Pre-release) +**Current Version:** 0.1.1 (Pre-release) This release brings C89 compliance fixes and a complete logging system rewrite with levels, timestamps, and runtime configuration. diff --git a/include/stk_version.h b/include/stk_version.h index 41949e7..7e54bd5 100644 --- a/include/stk_version.h +++ b/include/stk_version.h @@ -3,7 +3,7 @@ #define STK_VERSION_MAJOR 0 #define STK_VERSION_MINOR 1 -#define STK_VERSION_PATCH 0 +#define STK_VERSION_PATCH 1 #define STK_STRINGIFY_HELPER(x) #x #define STK_STRINGIFY(x) STK_STRINGIFY_HELPER(x)