Skip to content

Commit b0f1447

Browse files
committed
Rev 3.9.16 - FxWave2d, advanced compositing, time based alpha transitions.
1 parent 38d204f commit b0f1447

5 files changed

Lines changed: 9 additions & 9 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.15 - Bug fixes"
28-
$ git tag 3.9.15 master
27+
$ git commit -am "Rev 3.9.16 - FxWave2d, advanced compositing, time based alpha transitions."
28+
$ git tag 3.9.16 master
2929
$ git push
30-
$ git push origin 3.9.15
30+
$ git push origin 3.9.16
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.15
51+
PROJECT_NUMBER = 3.9.16
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.15",
41+
"version": "3.9.16",
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.15
2+
version=3.9.16
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.

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

0 commit comments

Comments
 (0)