diff --git a/README.md b/README.md index a2be5b5..1f7c3b0 100644 --- a/README.md +++ b/README.md @@ -150,6 +150,7 @@ sensor: Note: This automation could be further improved by looping over all sensors and checking if their entity_id starts with `sensor.avanza_stock_` and then extract the information. ## Changelog +* 1.0.1 - Allow fractional shares, add more change attributes * 1.0.0 - Add number of shares as optional configuration * 0.0.10 - Clean up monitored conditions * 0.0.9 - Compare payment date with todays date, ignore time diff --git a/custom_components/avanza_stock/sensor.py b/custom_components/avanza_stock/sensor.py index 183d1c9..b5db97f 100644 --- a/custom_components/avanza_stock/sensor.py +++ b/custom_components/avanza_stock/sensor.py @@ -15,7 +15,7 @@ from homeassistant.const import CONF_MONITORED_CONDITIONS, CONF_NAME from homeassistant.helpers.entity import Entity -__version__ = '1.0.0' +__version__ = '1.0.1' _LOGGER = logging.getLogger(__name__)