-
Notifications
You must be signed in to change notification settings - Fork 12
Add documentation about firmware versioning scheme #220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -101,3 +101,24 @@ X-Api-Version: 3.0.1 | |||||||||
|
|
||||||||||
| {"error": "request:api-version-not-supported"} | ||||||||||
| ``` | ||||||||||
|
|
||||||||||
| ## Firmware Versions | ||||||||||
|
|
||||||||||
| Firmware versions for HomeWizard products follow one of these formats: `x.yy` or `x.yyzz`. | ||||||||||
|
|
||||||||||
| - `x` is the **major** version | ||||||||||
| - `y` is the **minor** version | ||||||||||
| - `z` is the **patch** version (optional) | ||||||||||
|
Comment on lines
+110
to
+111
|
||||||||||
| - `y` is the **minor** version | |
| - `z` is the **patch** version (optional) | |
| - `yy` is the **minor** version (two digits) | |
| - `zz` is the **patch** version (optional, two digits) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The heading should end with a period to match the existing documentation convention. Throughout this file, all major headings (##) end with periods (e.g., "## Version Scheme.", "## Requesting a Specific API Version."). Should be
## Firmware Versions.