Skip to content

Commit 13795b8

Browse files
committed
Rev 3.9.15 - Bug fixes
1 parent 104c6fb commit 13795b8

5 files changed

Lines changed: 9 additions & 8 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.14 - Fixes for mqtt, Giga R1, Sin32 interpretation"
28-
$ git tag 3.9.14 master
27+
$ git commit -am "Rev 3.9.15 - Bug fixes"
28+
$ git tag 3.9.15 master
2929
$ git push
30-
$ git push origin 3.9.14
30+
$ git push origin 3.9.15
3131
```
3232

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

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.14",
41+
"version": "3.9.15",
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.14
2+
version=3.9.15
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ FastLED 3.9.15
1717
* https://github.com/FastLED/FastLED/blob/master/examples/Fire2023/Fire2023.ino
1818
* Uses multiple perlin noise function to generate an improved fire effect
1919

20+
2021
FastLED 3.9.14
2122
==============
2223
* Attiny4343 now works

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 3009014
19+
#define FASTLED_VERSION 3009015
2020
#ifndef FASTLED_INTERNAL
2121
# ifdef FASTLED_SHOW_VERSION
2222
# ifdef FASTLED_HAS_PRAGMA_MESSAGE
23-
# pragma message "FastLED version 3.009.014"
23+
# pragma message "FastLED version 3.009.015"
2424
# else
25-
# warning FastLED version 3.009.014 (Not really a warning, just telling you here.)
25+
# warning FastLED version 3.009.015 (Not really a warning, just telling you here.)
2626
# endif
2727
# endif
2828
#endif

0 commit comments

Comments
 (0)