Skip to content

Commit ef6f1f8

Browse files
committed
bump version
1 parent 8fe0a91 commit ef6f1f8

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.3.0
2+
current_version = 2.3.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.3.0"
3+
version = "2.3.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,5 +1,5 @@
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)"""
3-
__version__ = "2.3.0" # NOTE Use `bump2version --config-file patch` to bump versions correctly
3+
__version__ = "2.3.1" # NOTE Use `bump2version --config-file patch` to bump versions correctly
44
from .scpi import SCPIProtocol, SCPIDevice
55
from .errors import CommandError

tests/test_scpi.py

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

55
def test_version() -> None:
66
"""Make sure version matches expected"""
7-
assert __version__ == "2.3.0"
7+
assert __version__ == "2.3.1"

0 commit comments

Comments
 (0)