Skip to content

Commit

Permalink
Added support for custom CIP routing path for the GetModuleProperties…
Browse files Browse the repository at this point in the history
… function.

This gives the developer the option to access nested backplanes/buses (Such as CompactBus, DeviceNet, etc...)
  • Loading branch information
daniel-leicht committed Sep 18, 2019
1 parent 7cc79f6 commit eb5b9e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pylogix/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .lgxDevice import LGXDevice
from .eip import PLC
__version_info__ = (0, 4, 0)
__version_info__ = (0, 5, 0)
__version__ = '.'.join(str(x) for x in __version_info__)
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pylogix",
version="0.4.0",
version="0.5.0",
author="Dustin Roeder",
author_email="[email protected]",
description="Read/Write Rockwell Automation Logix based PLC's",
Expand Down

0 comments on commit eb5b9e8

Please sign in to comment.