From 6ba5447161a6b4c4843dde44aaf70b75c7cb464a Mon Sep 17 00:00:00 2001 From: Christopher Beard <20585410+chrisbeardy@users.noreply.github.com> Date: Fri, 14 Mar 2025 11:14:00 +0000 Subject: [PATCH 1/2] 3.5.0 release --- CHANGELOG.md | 6 +++++- pyads/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) 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/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' From 15582277a484091733fe73602f265f3827b0678f Mon Sep 17 00:00:00 2001 From: Christopher Beard <20585410+chrisbeardy@users.noreply.github.com> Date: Fri, 14 Mar 2025 11:27:54 +0000 Subject: [PATCH 2/2] update install docs --- doc/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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