Bump to version 2.1, update Changelog.md

This commit is contained in:
Stephen Seo 2024-06-04 15:55:52 +09:00
parent 0e2545ecea
commit dcc9ae38c5
2 changed files with 6 additions and 1 deletions

View file

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.7) cmake_minimum_required(VERSION 3.7)
project(AnotherMemCheck) project(AnotherMemCheck)
set(AnotherMemCheck_VERSION 2.0) set(AnotherMemCheck_VERSION 2.1)
set(AnotherMemCheck_SOVERSION 2) set(AnotherMemCheck_SOVERSION 2)
set(AnotherMemCheck_SOURCES set(AnotherMemCheck_SOURCES

View file

@ -1,5 +1,10 @@
# Changelog # 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 ## Version 2.0
Minor refactorings. Minor refactorings.