diff --git a/CHANGELOG.md b/CHANGELOG.md index 49eefd008f..78b4f9f11d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.105.1 (2024-10-24) + +### Fix + +- Refactor Midlothian Council scraper to use house number and postcode + ## 0.105.0 (2024-10-21) ### Feat diff --git a/custom_components/uk_bin_collection/config_flow.py b/custom_components/uk_bin_collection/config_flow.py index 7a5438de77..d386134c64 100644 --- a/custom_components/uk_bin_collection/config_flow.py +++ b/custom_components/uk_bin_collection/config_flow.py @@ -22,7 +22,7 @@ def __init__(self): async def get_councils_json(self) -> object: """Returns an object of supported council's and their required fields.""" # Fetch the JSON data from the provided URL - url = "https://raw.githubusercontent.com/robbrad/UKBinCollectionData/0.105.0/uk_bin_collection/tests/input.json" + url = "https://raw.githubusercontent.com/robbrad/UKBinCollectionData/0.105.1/uk_bin_collection/tests/input.json" async with aiohttp.ClientSession() as session: async with session.get(url) as response: data_text = await response.text() diff --git a/custom_components/uk_bin_collection/manifest.json b/custom_components/uk_bin_collection/manifest.json index 15d139d3ec..f93c03c9d5 100644 --- a/custom_components/uk_bin_collection/manifest.json +++ b/custom_components/uk_bin_collection/manifest.json @@ -9,7 +9,7 @@ "integration_type": "service", "iot_class": "cloud_polling", "issue_tracker": "https://github.com/robbrad/UKBinCollectionData/issues", - "requirements": ["uk-bin-collection>=0.105.0"], - "version": "0.105.0", + "requirements": ["uk-bin-collection>=0.105.1"], + "version": "0.105.1", "zeroconf": [] } diff --git a/pyproject.toml b/pyproject.toml index a9a91f5f66..c9c4a66675 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "uk_bin_collection" -version = "0.105.0" +version = "0.105.1" description = "Python Lib to collect UK Bin Data" readme = "README.md" authors = ["Robert Bradley "]