Skip to content

Commit

Permalink
0.15.2 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Adminiuga authored Apr 4, 2020
2 parents 13f96c8 + b937d05 commit d26b5bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bellows/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MAJOR_VERSION = 0
MINOR_VERSION = 15
PATCH_VERSION = "1"
PATCH_VERSION = "2"
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
2 changes: 1 addition & 1 deletion bellows/ezsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def connection_lost(self, exc):
def enter_failed_state(self, error):
"""UART received error frame."""
LOGGER.error("NCP entered failed state. Requesting APP controller restart")
self.stop_ezsp()
self.close()
self.handle_callback("_reset_controller_application", (error,))

async def formNetwork(self, parameters): # noqa: N802
Expand Down

0 comments on commit d26b5bb

Please sign in to comment.