Skip to content

Commit 4444758

Browse files
committed
FastLED 3.7.0 release, with new ESP-IDF support, new device support, new library functions, and bug fixes.
1 parent 3d652cb commit 4444758

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

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.6.0
51+
PROJECT_NUMBER = 3.7.0
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 viewer a

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"type": "git",
3434
"url": "https://github.com/FastLED/FastLED.git"
3535
},
36-
"version": "3.6.0",
36+
"version": "3.7.0",
3737
"license": "MIT",
3838
"homepage": "http://fastled.io",
3939
"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.6.0
2+
version=3.7.0
33
author=Daniel Garcia
44
maintainer=Daniel Garcia <[email protected]>
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
FastLED 3.7.0
2+
=============
3+
This release incorporates valuable improvements from FastLED contributors, tested and explored by the world-wide FastLED community of artists, creators, and developers. Thank you for all of your time, energy, and help! Here are some of the most significant changes in FastLED 3.7.0:
4+
* Support for ESP-IDF version 5.x on ESP32 and ESP8266
5+
* Improved support for new boards including UNO r4, Adafruit Grand Central Metro M4, SparkFun Thing Plus, RP2040, Portenta C33, and others. We also added a pointer to the PORTING.md document to help streamline additional porting; if you’re porting to a new microcontroller, PORTING.md is the place to start.
6+
* New gamma correction capability for APA102 and SK9822 LEDs
7+
* Bug fixes and performances improvements, including faster smaller code on AVR, fewer compiler warnings, and faster build times
8+
* Released May 2024, with heartfelt thanks to all the FastLED community members around the world!
9+
10+
111
FastLED 3.6.0
212
=============
313
This release incorporates valuable improvements from FastLED contributors, tested and explored by the world-wide FastLED community of artists, creators, and developers. Thank you for all of your time, energy, and help! Here are some of the most significant changes in FastLED 3.6.0:

src/FastLED.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@
99
#endif
1010

1111
/// Current FastLED version number, as an integer.
12-
/// E.g. 3006000 for version "3.6.0", with:
12+
/// E.g. 3007000 for version "3.7.0", with:
1313
/// * 1 digit for the major version
1414
/// * 3 digits for the minor version
1515
/// * 3 digits for the patch version
16-
#define FASTLED_VERSION 3006000
16+
#define FASTLED_VERSION 3007000
1717
#ifndef FASTLED_INTERNAL
1818
# ifdef FASTLED_SHOW_VERSION
1919
# ifdef FASTLED_HAS_PRAGMA_MESSAGE
20-
# pragma message "FastLED version 3.006.000"
20+
# pragma message "FastLED version 3.007.000"
2121
# else
22-
# warning FastLED version 3.006.000 (Not really a warning, just telling you here.)
22+
# warning FastLED version 3.007.000 (Not really a warning, just telling you here.)
2323
# endif
2424
# endif
2525
#endif

0 commit comments

Comments
 (0)