diff --git a/CHANGELOG.md b/CHANGELOG.md index e5c9fb63..eddb3d48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## 3.5.0 (Unreleased) +## 3.5.0 ### Added * [#384](https://github.com/stlehmann/pyads/pull/384) Enable processing of nested structures @@ -14,6 +14,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). * [#437](https://github.com/stlehmann/pyads/pull/437) Solve issue of too little buffer space allocated to receive for automatic AMS NetID query * [#438](https://github.com/stlehmann/pyads/pull/438) Fix issue with read list by name using structure defs if more than MAX_SUB_ADS_COMMANDS +### Fixed +* [#342](https://github.com/stlehmann/pyads/pull/342) Array support in read by list +* [#427](https://github.com/stlehmann/pyads/pull/427) Fixed issue with auto-update with structures + ## 3.4.2 ### Changed diff --git a/doc/installation.md b/doc/installation.md index 28729eb9..46651800 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -15,12 +15,12 @@ conda install pyads From source: ```bash -git clone https://github.com/MrLeeh/pyads.git --recursive +git clone https://github.com/stlehmann/pyads.git --recursive cd pyads python setup.py install ``` -Note: pyads only supports python 3.7 and above. +Note: pyads only supports python 3.8 and above. ## Installation on Linux diff --git a/pyads/__init__.py b/pyads/__init__.py index f4d0abd9..ab7ad5d5 100644 --- a/pyads/__init__.py +++ b/pyads/__init__.py @@ -118,4 +118,4 @@ from .symbol import AdsSymbol -__version__ = '3.4.2' +__version__ = '3.5.0'