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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.6.0] - 2026-07-26

### Fixed

- `save_waveform` now accepts `npz` and `h5` as aliases for `NPY` and `HDF5`. `npz` is
Expand Down
2 changes: 2 additions & 0 deletions docs/about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.6.0] - 2026-07-26

### Fixed

- `save_waveform` now accepts `npz` and `h5` as aliases for `NPY` and `HDF5`. `npz` is
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "SCPI-Instrument-Control"
version = "5.5.0"
version = "5.6.0"
# NOTE: this is the PyPI summary and has a hard 512-character cap. Check the length
# before every release -- the v3.2.0 publish failed on exactly this.
description = "Universal Python library for SCPI test equipment over Ethernet, USB, GPIB or serial. One API for oscilloscopes (Siglent, Tektronix, LeCroy), AWGs, power supplies and DAQ units, with waveform capture and provenance, FFT analysis, a PyQt6 GUI, a browser lab gateway, PDF/Markdown reports with local-LLM analysis, and high-fidelity mock instruments for developing with no hardware attached."
Expand Down
2 changes: 1 addition & 1 deletion scpi_control/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from scpi_control.report_generator import ReportGenerator
"""

__version__ = "5.5.0"
__version__ = "5.6.0"

from scpi_control.exceptions import CommandError, SiglentConnectionError, SiglentError, SiglentTimeoutError
from scpi_control.oscilloscope import Oscilloscope
Expand Down
Loading