Skip to content

Commit

Permalink
Merge pull request esphome#2203 from esphome/bump-2021.8.2
Browse files Browse the repository at this point in the history
2021.8.2
  • Loading branch information
jesserockz authored Aug 25, 2021
2 parents 1fac91a + 4937af0 commit 5086cd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion esphome/components/light/color_mode.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ enum class ColorMode : uint8_t {
/// Only on/off control.
ON_OFF = (uint8_t) ColorCapability::ON_OFF,
/// Dimmable light.
BRIGHTNESS = (uint8_t)(ColorCapability::ON_OFF | ColorCapability::BRIGHTNESS),
BRIGHTNESS = (uint8_t) ColorCapability::BRIGHTNESS,
/// White output only (use only if the light also has another color mode such as RGB).
WHITE = (uint8_t)(ColorCapability::ON_OFF | ColorCapability::BRIGHTNESS | ColorCapability::WHITE),
/// Controllable color temperature output.
Expand Down
2 changes: 1 addition & 1 deletion esphome/const.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Constants used by esphome."""

__version__ = "2021.8.1"
__version__ = "2021.8.2"

ESP_PLATFORM_ESP32 = "ESP32"
ESP_PLATFORM_ESP8266 = "ESP8266"
Expand Down

0 comments on commit 5086cd7

Please sign in to comment.