Skip to content
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

Release version 0.13.0 #43

Merged
merged 1 commit into from
Mar 12, 2024
Merged
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
19 changes: 19 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ release, breaking changes will increment the minor version only. This is likely
to happen quite often until things have settled down and a certain degree of
maturity is established.

Release 0.13.0
--------------

This release is going to make many variants of the Numato devices compatible.

Those variants' major differences are in the end-of-line sequences of responses
to queries and notificastions. Worse, in some cases they are not even uniform
across responses and notifications of a single device variant. Consequently,
this version now completely discards all end-of-line characters while reading
which also simplifies the reading code a lot. Discarding is possible as all
device resonses are either known by their length or are terminated by the
`>` prompt character.

Breaking change:

Using the notification API on a board that doesn't support notifications (8
port boards don't) will now raise a NumatoGpioException instead of returning
False.

Release 0.12.0
--------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "numato-gpio"
version = "0.13.0a0"
version = "0.13.0"
description = "Python API for Numato GPIO Expanders"
authors = ["Henning Claßen <code@clssn.de>"]
license = "MIT License"
Expand Down
Loading