From dcc9ae38c5d8f06d76d58c1c255d4e9f323ef1b5 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 4 Jun 2024 15:55:52 +0900 Subject: [PATCH] Bump to version 2.1, update Changelog.md --- CMakeLists.txt | 2 +- Changelog.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 41e184e..d974285 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.7) project(AnotherMemCheck) -set(AnotherMemCheck_VERSION 2.0) +set(AnotherMemCheck_VERSION 2.1) set(AnotherMemCheck_SOVERSION 2) set(AnotherMemCheck_SOURCES diff --git a/Changelog.md b/Changelog.md index 5b1c77a..7bc6a45 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,10 @@ # Changelog +## Verison 2.1 + +Previous implementation did not fully account for total size of a call to +calloc. This version should fix this. + ## Version 2.0 Minor refactorings.