Releases: pimoroni/as7262-python
Releases · pimoroni/as7262-python
Version 1.0.0
What's Changed
- Add GitHub actions workflow by @Gadgetoid in #5
- Drop Python 3.4, fix coveralls by @Gadgetoid in #7
- Repackage to hatch/pyproject.toml by @Gadgetoid in #10
Full Changelog: v0.1.0...v1.0.0
Version 0.1.0
Changes AS7262 from a singleton module into a class. This is a breaking change that affects backward compatibility with user code, but instead of:
import as7262
You can use:
from as7262 import AS7262
as7262 = AS7262()
And things should work as before.
This change also migrates to the new i2cdevice>=0.0.6 set/get API. For more information see: pimoroni/i2cdevice-python#3