From 433e8acdd9810343c679ea8b64547be3addac98d Mon Sep 17 00:00:00 2001 From: rob tillaart Date: Mon, 13 Dec 2021 21:05:26 +0100 Subject: [PATCH] 0.2.5 AvrHeap --- libraries/AvrHeap/LICENSE | 2 +- libraries/AvrHeap/README.md | 8 +++++++- libraries/AvrHeap/avrheap.cpp | 5 +++-- libraries/AvrHeap/avrheap.h | 4 ++-- libraries/AvrHeap/library.json | 5 +++-- libraries/AvrHeap/library.properties | 2 +- libraries/AvrHeap/test/unit_test_001.cpp_no test_possible | 4 ++-- 7 files changed, 19 insertions(+), 11 deletions(-) diff --git a/libraries/AvrHeap/LICENSE b/libraries/AvrHeap/LICENSE index 106ce9dc..0efc43d2 100644 --- a/libraries/AvrHeap/LICENSE +++ b/libraries/AvrHeap/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2015-2021 Rob Tillaart +Copyright (c) 2015-2022 Rob Tillaart Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/libraries/AvrHeap/README.md b/libraries/AvrHeap/README.md index 685aeed1..0342f52a 100644 --- a/libraries/AvrHeap/README.md +++ b/libraries/AvrHeap/README.md @@ -21,4 +21,10 @@ this is useful for debugging memory allocation. ## Operation -See example heapdemo2.ino +See example heapdemo2.ino + + +## Future + +- no development unless specific requested. +- diff --git a/libraries/AvrHeap/avrheap.cpp b/libraries/AvrHeap/avrheap.cpp index 99430943..ae04ccc3 100644 --- a/libraries/AvrHeap/avrheap.cpp +++ b/libraries/AvrHeap/avrheap.cpp @@ -10,13 +10,14 @@ // http://forum.arduino.cc/index.php?topic=355660 // // HISTORY +// 0.2.5 2021-12-13 update library.json, license // 0.2.4 2021-10-19 update Arduino-CI + add badges // 0.2.3 2021-05027 add Arduino-CI -// 0.2.2 2020-12-13 arduino-CI + minimal unit tests +// 0.2.2 2020-12-13 Arduino-CI + minimal unit tests // 0.2.1 2020-05-27 update library.json // 0.2.0 2020-03-27 Removed support for pre 1.0 version // 0.1.5 fix typo #116 - Thanks to DMNC -// 0.1.04 new methods incl PrintTo support - Thanks to Whandall +// 0.1.04 new methods including PrintTo support - Thanks to Whandall // !! breaking interface // 0.1.03 refactoring // 0.1.02 added followHeap() diff --git a/libraries/AvrHeap/avrheap.h b/libraries/AvrHeap/avrheap.h index 583b67a8..b7c6b035 100644 --- a/libraries/AvrHeap/avrheap.h +++ b/libraries/AvrHeap/avrheap.h @@ -2,7 +2,7 @@ // // FILE: avrheap.h // AUTHOR: Rob Tillaart -// VERSION: 0.2.4 +// VERSION: 0.2.5 // PURPOSE: experimental library for heap Arduino UNO // HISTORY: See avrheap.cpp // @@ -17,7 +17,7 @@ #include "Printable.h" -#define AVRHEAP_LIB_VERSION (F("0.2.4")) +#define AVRHEAP_LIB_VERSION (F("0.2.5")) class Avrheap : public Printable diff --git a/libraries/AvrHeap/library.json b/libraries/AvrHeap/library.json index ad4c81e7..8b070110 100644 --- a/libraries/AvrHeap/library.json +++ b/libraries/AvrHeap/library.json @@ -15,8 +15,9 @@ "type": "git", "url": "https://github.com/RobTillaart/avrheap.git" }, - "version": "0.2.4", + "version": "0.2.5", "license": "MIT", "frameworks": "arduino", - "platforms": "avr" + "platforms": "avr", + "headers": "avrheap.h" } diff --git a/libraries/AvrHeap/library.properties b/libraries/AvrHeap/library.properties index e12d9127..3cfe637f 100644 --- a/libraries/AvrHeap/library.properties +++ b/libraries/AvrHeap/library.properties @@ -1,5 +1,5 @@ name=AvrHeap -version=0.2.4 +version=0.2.5 author=Rob Tillaart maintainer=Rob Tillaart sentence=Library to runtime analyze the structure of the heap (AVR328). diff --git a/libraries/AvrHeap/test/unit_test_001.cpp_no test_possible b/libraries/AvrHeap/test/unit_test_001.cpp_no test_possible index 64db5b81..d12a86b5 100644 --- a/libraries/AvrHeap/test/unit_test_001.cpp_no test_possible +++ b/libraries/AvrHeap/test/unit_test_001.cpp_no test_possible @@ -38,8 +38,8 @@ unittest_teardown() unittest(test_constructor) { Avrheap myheap; - - fprintf(stderr, "no unit tests yet"); + + fprintf(stderr, "no unit tests yet\n"); }