Skip to content

Commit

Permalink
0.18.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Adminiuga authored Aug 11, 2020
2 parents 73493ed + 6735092 commit 1ce913d
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 = 18
PATCH_VERSION = "0"
PATCH_VERSION = "1"
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
2 changes: 1 addition & 1 deletion bellows/config/ezsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
vol.Optional(c.CONFIG_MAX_HOPS.name): vol.All(int, vol.Range(min=0, max=30)),
#
# The maximum number of end device children that a router will support
vol.Optional(c.CONFIG_MAX_END_DEVICE_CHILDREN.name, default=24): vol.All(
vol.Optional(c.CONFIG_MAX_END_DEVICE_CHILDREN.name, default=32): vol.All(
int, vol.Range(min=0, max=32)
),
#
Expand Down

0 comments on commit 1ce913d

Please sign in to comment.