-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
32 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
=============== | ||
Release History | ||
=============== | ||
|
||
1.0.0 | ||
===== | ||
|
||
- |:sparkles:| New type system to replace the ``Pack`` and ``Unpack`` helper classes | ||
- New types represent any CIP type or object and allow encoding and decoding of values | ||
- Allows users to create their own custom types | ||
- |:boom:| **[Breaking]** ``generic_message`` replaced the ``data_format`` argument with ``data_type``, see documentation for details. | ||
- |:sparkles:| Added a new ``discover()`` method for finding Ethernet/IP devices on the local network | ||
- |:sparkles:| Added a ``configure_default_logger`` method for simple logging setup | ||
- Packet contents are now logged using a custom ``VERBOSE`` level | ||
- |:art:| Internal package structure changed. | ||
- |:recycle:| Lots of refactoring, decoupling, etc | ||
- |:white_check_mark:| Increased test coverage | ||
- |:memo:| New and improved documentation | ||
- |:construction:| Still a work-in-progress | ||
|
||
|
||
Logix Driver | ||
^^^^^^^^^^^^ | ||
|
||
- |:triangular_flag_on_post:| Upload of program-scoped tags is now enabled by default | ||
- Use ``init_program_tags=False`` in initializer for to upload controller-scoped only tags | ||
- |:boom:| Removed the ``init_info`` and ``micro800`` init args and the ``use_instance_ids`` property | ||
- These have all been automatic for awhile now, but were left for backwards compatibility | ||
- If you need to customize this behavior, override the ``_initialize_driver`` method |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (c) 2020 Ian Ottoway <[email protected]> | ||
# Copyright (c) 2021 Ian Ottoway <[email protected]> | ||
# Copyright (c) 2014 Agostino Ruscito <[email protected]> | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (c) 2020 Ian Ottoway <[email protected]> | ||
# Copyright (c) 2021 Ian Ottoway <[email protected]> | ||
# Copyright (c) 2014 Agostino Ruscito <[email protected]> | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
|