Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kriegsman <1334634+kriegsman@users.noreply.github.com>2020-12-22 21:27:38 +0300
committerMark Kriegsman <1334634+kriegsman@users.noreply.github.com>2020-12-22 21:27:38 +0300
commit2fe6aebc778a836a8556b8e4508381e9c847f7a3 (patch)
tree71736fc9fc39b5db1b02b5394256e83835457094
parentd5a7defc04eec53850de93c136e555d1965c73d6 (diff)
Updated for release 3.4.03.4.0
-rw-r--r--README.md2
-rw-r--r--library.json2
-rw-r--r--library.properties2
-rw-r--r--release_notes.md15
-rw-r--r--src/FastLED.h6
5 files changed, 21 insertions, 6 deletions
diff --git a/README.md b/README.md
index a945c5db..da63e755 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
IMPORTANT NOTE: For AVR based systems, avr-gcc 4.8.x is supported and tested. This means Arduino 1.6.5 and later.
-FastLED 3.3
+FastLED 3.4
===========
This is a library for easily & efficiently controlling a wide variety of LED chipsets, like the ones
diff --git a/library.json b/library.json
index 7b1dd471..9e330204 100644
--- a/library.json
+++ b/library.json
@@ -33,7 +33,7 @@
"type": "git",
"url": "https://github.com/FastLED/FastLED.git"
},
- "version": "3.3.3",
+ "version": "3.4.0",
"license": "MIT",
"homepage": "http://fastled.io",
"frameworks": "arduino",
diff --git a/library.properties b/library.properties
index 2ebea658..fc8d17b1 100644
--- a/library.properties
+++ b/library.properties
@@ -1,5 +1,5 @@
name=FastLED
-version=3.3.3
+version=3.4.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.
diff --git a/release_notes.md b/release_notes.md
index 9c38eedf..e7eb7792 100644
--- a/release_notes.md
+++ b/release_notes.md
@@ -1,3 +1,18 @@
+FastLED 3.4.0
+=============
+
+* Improved reliability on ESP32 when wifi is active
+* Merged in contributed support for Adafruit boards: QT Py SAMD21, Circuit Playground Express, Circuit Playground Bluefruit, and ItsyBitsy nRF52840 Express
+* Merged in contributed support for SparkFun Artemis boards
+* Merged in contributed support for Arduino Nano Every / Arduino Uno Wifi Rev. 2
+* Merged in contributed support for Seeedstudio Odyssey and XIAO boards
+* Merged in contributed support for AVR chips ATmega1284, ATmega4809, and LGT8F328
+* XYMatrix example now supports 90-degree rotated orientation
+* Moved source code files into "src" subdirectory
+* Many small code cleanups and bug fixes
+* Released December 2020, with many thanks to everyone contributing to FastLED!
+
+
FastLED 3.3.3
=============
diff --git a/src/FastLED.h b/src/FastLED.h
index 0cc1acc4..042496fc 100644
--- a/src/FastLED.h
+++ b/src/FastLED.h
@@ -8,12 +8,12 @@
#define FASTLED_HAS_PRAGMA_MESSAGE
#endif
-#define FASTLED_VERSION 3003002
+#define FASTLED_VERSION 3004000
#ifndef FASTLED_INTERNAL
# ifdef FASTLED_HAS_PRAGMA_MESSAGE
-# pragma message "FastLED version 3.003.003"
+# pragma message "FastLED version 3.004.000"
# else
-# warning FastLED version 3.003.003 (Not really a warning, just telling you here.)
+# warning FastLED version 3.004.000 (Not really a warning, just telling you here.)
# endif
#endif