From 324dbc21a59731848300dc965d96f2bd7d7a859b Mon Sep 17 00:00:00 2001 From: Aster Seker Date: Sat, 6 Sep 2025 02:42:06 +0300 Subject: [PATCH] chore(release): prepare v0.3.0 Update project version to 0.3.0 and record PBKDF2 addition and documentation fixes. --- CHANGELOG.md | 9 +++++++++ CMakeLists.txt | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..471c986 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## [0.3.0] - 2025-09-05 +### Added +- PBKDF2 implementation. + +### Fixed +- Documentation corrections. + diff --git a/CMakeLists.txt b/CMakeLists.txt index 3999b52..1a1f0f6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.5) -project(hmac_cpp VERSION 0.2.0 LANGUAGES CXX) +project(hmac_cpp VERSION 0.3.0 LANGUAGES CXX) option(HMACCPP_BUILD_EXAMPLES "Build the example program" OFF) option(HMACCPP_BUILD_TESTS "Build the test suite" OFF)