Skip to content

Commit

Permalink
FastLED 3.7.0 release, with new ESP-IDF support, new device support, …
Browse files Browse the repository at this point in the history
…new library functions, and bug fixes.
  • Loading branch information
kriegsman committed May 27, 2024
1 parent 3d652cb commit 4444758
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = FastLED
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 3.6.0
PROJECT_NUMBER = 3.7.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"type": "git",
"url": "https://github.com/FastLED/FastLED.git"
},
"version": "3.6.0",
"version": "3.7.0",
"license": "MIT",
"homepage": "http://fastled.io",
"frameworks": "arduino",
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=FastLED
version=3.6.0
version=3.7.0
author=Daniel Garcia
maintainer=Daniel Garcia <dgarcia@fastled.io>
sentence=Multi-platform library for controlling dozens of different types of LEDs along with optimized math, effect, and noise functions.
Expand Down
10 changes: 10 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
FastLED 3.7.0
=============
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:
* Support for ESP-IDF version 5.x on ESP32 and ESP8266
* 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.
* New gamma correction capability for APA102 and SK9822 LEDs
* Bug fixes and performances improvements, including faster smaller code on AVR, fewer compiler warnings, and faster build times
* Released May 2024, with heartfelt thanks to all the FastLED community members around the world!


FastLED 3.6.0
=============
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:
Expand Down
8 changes: 4 additions & 4 deletions src/FastLED.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
#endif

/// Current FastLED version number, as an integer.
/// E.g. 3006000 for version "3.6.0", with:
/// E.g. 3007000 for version "3.7.0", with:
/// * 1 digit for the major version
/// * 3 digits for the minor version
/// * 3 digits for the patch version
#define FASTLED_VERSION 3006000
#define FASTLED_VERSION 3007000
#ifndef FASTLED_INTERNAL
# ifdef FASTLED_SHOW_VERSION
# ifdef FASTLED_HAS_PRAGMA_MESSAGE
# pragma message "FastLED version 3.006.000"
# pragma message "FastLED version 3.007.000"
# else
# warning FastLED version 3.006.000 (Not really a warning, just telling you here.)
# warning FastLED version 3.007.000 (Not really a warning, just telling you here.)
# endif
# endif
#endif
Expand Down

2 comments on commit 4444758

@marmilicious
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you Mark!

@kriegsman
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

Please sign in to comment.