v0.8.0
What's Changed
- update smart-leds-trait to v0.3 by @cat-in-136 in #45
- Remove all default features by @faern in #35
- Delete unstable feature by @cat-in-136 in #47
- Update esp-idf-hal with workaround to copy symbol by @MnlPhlp in #49
New Contributors
Upgrade guide
The default feature has been changed. The default feature is no longer to load smart-leds API and load only the driver API. unstable feature is no longer used. Some replacement examples are shown below:
v0.7.1 | v0.8.0 |
---|---|
ws2812-esp32-rmt-driver = "*" |
ws2812-esp32-rmt-driver = { version = "*", features = ["smart-leds-trait"] } |
ws2812-esp32-rmt-driver = { version = "*", features = ["embedded-graphics-core", "unstable"]} |
ws2812-esp32-rmt-driver = { version = "*", features = ["embedded-graphics-core"]} |
ws2812-esp32-rmt-driver = { version = "*", features = ["smart-leds"]} |
ws2812-esp32-rmt-driver = { version = "*", features = ["smart-leds-trait"] } |
ws2812-esp32-rmt-driver = { version = "*", features = ["smart-leds", "unstable"]} |
ws2812-esp32-rmt-driver = { version = "*", features = ["smart-leds-trait"] } |
ws2812-esp32-rmt-driver = { version = "*", default-features = false} |
ws2812-esp32-rmt-driver = "*" |
Full Changelog: v0.7.1...v0.8.0