Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

## [Unreleased]

## [0.5.0] - 2025-09-07
### Added
- Lifecycle management APIs and hardened zeroing for `secure_buffer`.
- Improved `secret_string` implementation for better safety and performance.
- Expanded tests covering nonce rotation and integrity checks in `secret_string`.

### Changed
- Renamed `secret.hpp` to `secret_string.hpp`; includes must update.

### Notes
- Breaking changes: header rename.

## [0.4.0] - 2025-09-06
### Added
- Base32 (RFC 4648), Base64, and Base36 encoding/decoding utilities.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(hmac_cpp VERSION 0.4.0 LANGUAGES CXX)
project(hmac_cpp VERSION 0.5.0 LANGUAGES CXX)

option(HMACCPP_BUILD_EXAMPLES "Build the example program" OFF)
option(HMACCPP_BUILD_TESTS "Build the test suite" OFF)
Expand Down
4 changes: 2 additions & 2 deletions include/hmac_cpp/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#define HMAC_CPP_VERSION_HPP

#define HMAC_CPP_VERSION_MAJOR 0
#define HMAC_CPP_VERSION_MINOR 4
#define HMAC_CPP_VERSION_MINOR 5
#define HMAC_CPP_VERSION_PATCH 0
#define HMAC_CPP_VERSION "0.4.0"
#define HMAC_CPP_VERSION "0.5.0"

#endif // HMAC_CPP_VERSION_HPP
Loading