From 731039acf864f144b642f270caf1aedde2fc0660 Mon Sep 17 00:00:00 2001 From: dmroeder Date: Sun, 5 May 2019 09:23:32 -0700 Subject: [PATCH] Uppded version, updated changlog --- changelog | 5 +++++ pylogix/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog b/changelog index 4ff432b..7473c53 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,8 @@ +05/05/19 + -Pulled extneded forward open support from aansel-plenty + -Did a little code cleaup + -Fixed crash reading large chunks of data + 04/08/19 -Return the raw bytes when a UDT is read, added example -Update install documentation diff --git a/pylogix/__init__.py b/pylogix/__init__.py index d1d3922..650bf7d 100644 --- a/pylogix/__init__.py +++ b/pylogix/__init__.py @@ -1,4 +1,4 @@ from .lgxDevice import LGXDevice from .eip import PLC -__version_info__ = (0, 3, 2) +__version_info__ = (0, 3, 3) __version__ = '.'.join(str(x) for x in __version_info__) diff --git a/setup.py b/setup.py index c11c0cf..990c047 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="pylogix", - version="0.3.2", + version="0.3.3", author="Dustin Roeder", author_email="dmroeder@gmail.com", description="Read/Write Rockwell Automation Logix based PLC's",