diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d57746..cafd24e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [0.6.1] - 2026-01-03 + +### Added + +- Provisional adding LiteAP AC as a mapping towards the full model name + ## [0.6.0] - 2025-10-22 Major thanks to user HJ@discord for putting up with testing and dustball62 for confirming diff --git a/airos/model_map.py b/airos/model_map.py index 9dacf01..236bd5b 100644 --- a/airos/model_map.py +++ b/airos/model_map.py @@ -80,6 +80,7 @@ # Manually added entries for common unofficial names MANUAL_MODELS: dict[str, str] = { + "LiteAP AC": "LAP-120", # Shortened name for airMAX Lite Access Point AC, Issue 137 "LiteAP GPS": "LAP-GPS", # Shortened name for airMAX Lite Access Point GPS "NanoStation loco M5": "LocoM5", # XM firmware version 6 - note the reversed names } diff --git a/pyproject.toml b/pyproject.toml index 9732b65..09927a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "airos" -version = "0.6.0" +version = "0.6.1" license = "MIT" description = "Ubiquiti airOS module(s) for Python 3." readme = "README.md"