Skip to content

Commit 97e8994

Browse files
committed
rev 3.9.19 - HOT FIX - even/odd led fix and memory reduction in AVR
1 parent 0f9da86 commit 97e8994

7 files changed

Lines changed: 15 additions & 12 deletions

File tree

RELEASE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ Release notes should list highlight changes (not necessarily all minor bug fixes
2424

2525
Git commands to commit and tag release'
2626
```bash
27-
$ git commit -am "Rev 3.9.18 - HOT FIX - Even/odd led fix and memory reduction on AVR."
28-
$ git tag 3.9.18 master
27+
$ git commit -am "Rev 3.9.19 - HOT FIX - Even/odd led fix and memory reduction on AVR."
28+
$ git tag 3.9.19 master
2929
$ git push
30-
$ git push origin 3.9.18
30+
$ git push origin 3.9.19
3131
```
3232

3333
Then use the GitHub UI to make a new “Release”:

docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = FastLED
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 3.9.18
51+
PROJECT_NUMBER = 3.9.19
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewers a

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"type": "git",
3939
"url": "https://github.com/FastLED/FastLED.git"
4040
},
41-
"version": "3.9.18",
41+
"version": "3.9.19",
4242
"license": "MIT",
4343
"homepage": "http://fastled.io",
4444
"frameworks": "arduino",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=FastLED
2-
version=3.9.18
2+
version=3.9.19
33
author=Daniel Garcia
44
maintainer=Daniel Garcia <dgarcia@fastled.io>
55
sentence=Multi-platform library for controlling dozens of different types of LEDs along with optimized math, effect, and noise functions.

release_notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
FastLED 3.9.18 + 3.9.19
2+
==============
3+
* Hotfixes for AVR platforms for 3.9.17
4+
5+
16
FastLED 3.9.17
27
==============
38

src/FastLED.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
/// * 1 digit for the major version
1717
/// * 3 digits for the minor version
1818
/// * 3 digits for the patch version
19-
#define FASTLED_VERSION 3009018
19+
#define FASTLED_VERSION 3009019
2020
#ifndef FASTLED_INTERNAL
2121
# ifdef FASTLED_SHOW_VERSION
2222
# ifdef FASTLED_HAS_PRAGMA_MESSAGE
23-
# pragma message "FastLED version 3.009.018"
23+
# pragma message "FastLED version 3.009.019"
2424
# else
25-
# warning FastLED version 3.009.018 (Not really a warning, just telling you here.)
25+
# warning FastLED version 3.009.019 (Not really a warning, just telling you here.)
2626
# endif
2727
# endif
2828
#endif

src/fl/audio.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ FFT& get_flex_fft() {
1313
return gFlexFFT.access();
1414
}
1515

16-
}
17-
18-
16+
} // namespace
1917

2018
const AudioSample::VectorPCM &AudioSample::pcm() const {
2119
if (isValid()) {

0 commit comments

Comments
 (0)