Skip to content

Commit 2c5c066

Browse files
committed
Version 0.9.82
- corrected bug on debugHandleEvent
1 parent fc19b82 commit 2c5c066

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SerialDebug Library for Arduino
22

3-
<a href="#releases">![build badge](https://img.shields.io/badge/version-v0.9.81-blue.svg)</a> [![Codacy Badge](https://api.codacy.com/project/badge/Grade/5ddb5c53fa29416eb1d1eaaf6f201ec6)](https://app.codacy.com/app/JoaoLopesF/SerialDebug?utm_source=github.com&utm_medium=referral&utm_content=JoaoLopesF/SerialDebug&utm_campaign=Badge_Grade_Settings)
3+
<a href="#releases">![build badge](https://img.shields.io/badge/version-v0.9.82-blue.svg)</a> [![Codacy Badge](https://api.codacy.com/project/badge/Grade/5ddb5c53fa29416eb1d1eaaf6f201ec6)](https://app.codacy.com/app/JoaoLopesF/SerialDebug?utm_source=github.com&utm_medium=referral&utm_content=JoaoLopesF/SerialDebug&utm_campaign=Badge_Grade_Settings)
44
<a href="https://github.com/JoaoLopesF/SerialDebug/blob/master/LICENSE.txt">![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)</a>
55
[![Gitter chat](https://badges.gitter.im/SerialDebug/gitter.png)](https://gitter.im/SerialDebug/Public)
66

@@ -822,6 +822,9 @@ Please access this tutorial, to give more information about how use __SerialDebu
822822

823823
## Releases
824824

825+
### 0.9.82 - 2018-11-25
826+
827+
- corrected bug on debugHandleEvent
825828
### 0.9.81 - 2018-11-16
826829

827830
- print macros now support second arg, e.g.: printlnA(10, HEX);

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "git",
88
"url": "https://github.com/JoaoLopesF/SerialDebug.git"
99
},
10-
"version": "0.9.81",
10+
"version": "0.9.82",
1111
"frameworks": "arduino",
1212
"platforms": "*"
1313
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SerialDebug
2-
version=0.9.81
2+
version=0.9.82
33
author=Joao Lopes
44
maintainer=Joao Lopes
55
sentence=Improved serial debug to Arduino with debug levels an simple software debugger

src/SerialDebug.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Note: This lybrary not use tasks, when for ESP32, due avoid serial output mixed
88
* Versions :
99
* ------ ---------- -------------------------
10-
* 0.9.82 2018-11-16 corrected bug on debugHandleEvent
10+
* 0.9.82 2018-11-25 corrected bug on debugHandleEvent
1111
* 0.9.81 2018-11-16 print macros now support second arg, e.g.: printlnA(10, HEX);
1212
* thanks to @wjwieland to open a issue about this.
1313
* 0.9.80 2018-11-15 Few adjustments in header files

0 commit comments

Comments
 (0)