From 2249bed677041047b2bc954d65327079a77ef24b Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 4 Jun 2024 12:15:46 +0900 Subject: [PATCH] Add Changelog.md, update README.md --- Changelog.md | 5 +++++ README.md | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 Changelog.md diff --git a/Changelog.md b/Changelog.md new file mode 100644 index 0000000..22ac23a --- /dev/null +++ b/Changelog.md @@ -0,0 +1,5 @@ +# Changelog + +## Version 1.0 + +Initial version with working `AnotherMemCheck`. diff --git a/README.md b/README.md index ffe6123..b168754 100644 --- a/README.md +++ b/README.md @@ -14,3 +14,9 @@ This software was created as an alternative to valgrind/memcheck. showing all memory that has been `malloc`ed and not `free`ed. Note that some memory will always be shown as having been not `free`ed (e.g. initializing heap stuff for the program at start). + +## Other Notes + +Since this is relatively newly written software (as of middle of 2024), there +might be a memory leak within this software when keeping track of memory. Thus, +this software may be revised later on.