Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.6.5] - 2026-04-28

### Added

- Add support for NanoAStation loco M900

## [0.6.4] - 2026-02-13

### Added
Expand Down
1 change: 1 addition & 0 deletions airos/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ class IeeeMode(Enum):
_11ACVHT20 = "11ACVHT20" # On a LiteBeam
_11NAHT40MINUS = "11NAHT40MINUS" # On a v6 XM
_11NAHT40PLUS = "11NAHT40PLUS" # On a v6 XW
_11NGHT20 = "11NGHT20" # On a v6 XM 900 MHz device (NanoStation loco M900)
# More to be added when known


Expand Down
1 change: 1 addition & 0 deletions airos/model_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
"LiteAP GPS": "LAP-GPS", # Shortened name for airMAX Lite Access Point GPS
"LiteBeam 5AC 23": "LBE-5AC-23",
"NanoStation loco M5": "LocoM5", # XM firmware version 6 - note the reversed names
"NanoStation loco M900": "LocoM900", # XM firmware version 6, 900 MHz variant
}

MODELS: dict[str, str] = {**SITE_MODELS, **MANUAL_MODELS}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "airos"
version = "0.6.4"
version = "0.6.5"
license = "MIT"
description = "Ubiquiti airOS module(s) for Python 3."
readme = "README.md"
Expand Down