From 3d03ec1e9b5c178112f436b9c49e7083058a60a8 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 4 Jun 2024 15:43:30 +0900 Subject: [PATCH] Bump version to 2.0, update Changelog.md --- CMakeLists.txt | 4 ++-- Changelog.md | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f8a1cd..41e184e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ cmake_minimum_required(VERSION 3.7) project(AnotherMemCheck) -set(AnotherMemCheck_VERSION 1.0) -set(AnotherMemCheck_SOVERSION 1) +set(AnotherMemCheck_VERSION 2.0) +set(AnotherMemCheck_SOVERSION 2) set(AnotherMemCheck_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/src/another_memcheck.cc" diff --git a/Changelog.md b/Changelog.md index 22ac23a..5b1c77a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,15 @@ # Changelog +## Version 2.0 + +Minor refactorings. + +Change internal implementation of linked list to be doubly-linked. + +Add support for calloc. + +Add pthreads to mutex-lock malloc/calloc/free. + ## Version 1.0 Initial version with working `AnotherMemCheck`.