Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@

from .symbol import AdsSymbol

__version__ = '3.4.2'
__version__ = '3.5.0'
Loading