Skip to content

Commit 56fcb53

Browse files
committed
bump version
1 parent fa2a8db commit 56fcb53

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.5.0
2+
current_version = 2.5.1
33
commit = False
44
tag = False
55

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "scpi"
3-
version = "2.5.0"
3+
version = "2.5.1"
44
description = "Basic idea here is to make transport-independent command sender/parser and a device baseclass that implements the common SCPI commands"
55
authors = ["Eero af Heurlin <eero.afheurlin@iki.fi>"]
66
homepage = "https://github.com/rambo/python-scpi/"

src/scpi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""SCPI module, the scpi class implements the base command set, devices may extend it.
22
transports are separate from devices (so you can use for example hp6632b with either serial port or GPIB)"""
33

4-
__version__ = "2.5.0" # NOTE Use `bump2version --config-file patch` to bump versions correctly
4+
__version__ = "2.5.1" # NOTE Use `bump2version --config-file patch` to bump versions correctly
55
from .scpi import SCPIProtocol, SCPIDevice
66
from .errors import CommandError
77

tests/test_scpi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
def test_version() -> None:
77
"""Make sure version matches expected"""
8-
assert __version__ == "2.5.0"
8+
assert __version__ == "2.5.1"

0 commit comments

Comments
 (0)