Skip to content

Commit

Permalink
Bump version to 2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ArminJo committed Dec 7, 2020
1 parent a4b3192 commit 6f4c7c0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# [NeoPatterns](https://github.com/ArminJo/NeoPatterns) for NeoPixel strips and Snake game for NeoPixel matrix.
Available as Arduino library "NeoPatterns"

### [Version 2.2.1](https://github.com/ArminJo/NeoPatterns/releases)
### [Version 2.2.4](https://github.com/ArminJo/NeoPatterns/releases)

[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
[![Installation instructions](https://www.ardu-badge.com/badge/NeoPatterns.svg?)](https://www.ardu-badge.com/NeoPatterns)
Expand Down Expand Up @@ -100,7 +100,9 @@ NeoPatterns on breadboard
![NeoPatterns on breadboard](https://github.com/ArminJo/NeoPatterns/blob/master/extras/Breadboard_complete.jpg)

# Revision History
### Version 2.2.2
### Version 2.2.4

### Version 2.2.2 + 2.2.3
- Fixed bugs if rows are not equal columns.
- Fixed bug in MatrixNeoPatterns constructor.
- Added `SUPPORT_ONLY_DEFAULT_GEOMETRY` compile option.
Expand Down
3 changes: 3 additions & 0 deletions examples/OpenLedRace/AVRUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ uint16_t getStackFreeMinimumBytes() {
return tStackFree;
}

/*
* Do not forget to call initStackFreeMeasurement() before
*/
void printStackFreeMinimumBytes(Print *aSerial) {
aSerial->print(F("Minimum free Stack[bytes]="));
aSerial->println(getStackFreeMinimumBytes());
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/ArminJo/NeoPatterns"
},
"version": "2.2.2",
"version": "2.2.3",
"exclude": "pictures",
"authors": {
"name": "Armin Joachimsmeyer",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=NeoPatterns
version=2.2.2
version=2.2.3
author=Armin Joachimsmeyer
maintainer=Armin Joachimsmeyer <[email protected]>
sentence=Patterns for NeoPixel strips and matrixes including the patterns of the NeoPattern example by Adafruit.<br/>
Expand Down
2 changes: 1 addition & 1 deletion src/NeoPatterns.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
#define PROGMEM
#endif

#define VERSION_NEOPATTERNS "2.2.2"
#define VERSION_NEOPATTERNS "2.2.3"
#define VERSION_NEOPATTERNS_MAJOR 2
#define VERSION_NEOPATTERNS_MINOR 2
// The change log is at the bottom of the file
Expand Down

0 comments on commit 6f4c7c0

Please sign in to comment.