Skip to content

Commit 1ca57e6

Browse files
author
Henri Ervasti
committed
Bump version: 0.51.2-beta.0 → 0.51.2
1 parent 9b0c5cd commit 1ca57e6

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.bumpversion_release.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.51.2-beta.0
2+
current_version = 0.51.2
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?(\.(?P<build>\d+))?

.bumpversion_stable.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.51.2-beta.0
2+
current_version = 0.51.2
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?(\.(?P<build>\d+))?

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.51.2-beta.0] - Unreleased
7+
## [0.51.2] - 2026-02-20
88

99
### Added
1010
- `run` method in `QMI_Context` class as this is now required for Python 3.14, after changes in `threading` module.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
[![pylint](https://github.com/QuTech-Delft/QMI/blob/stable-0-51/.github/badges/pylint.svg)](https://github.com/QuTech-Delft/QMI/blob/stable-0-51/.github/badges/pylint.svg)
2-
[![mypy](https://github.com/QuTech-Delft/QMI/blob/stable-0-51/.github/badges/mypy.svg)](https://github.com/QuTech-Delft/QMI/blob/stable-0-51/.github/badges/mypy.svg)
1+
[![pylint](https://github.com/QuTech-Delft/QMI/blob/v0.51.2/.github/badges/pylint.svg)](https://github.com/QuTech-Delft/QMI/blob/v0.51.2/.github/badges/pylint.svg)
2+
[![mypy](https://github.com/QuTech-Delft/QMI/blob/v0.51.2/.github/badges/mypy.svg)](https://github.com/QuTech-Delft/QMI/blob/v0.51.2/.github/badges/mypy.svg)
33
[![Documentation Status](https://readthedocs.org/projects/qmi/badge/?version=latest)](https://qmi.readthedocs.io/en/latest/?badge=latest)
4-
[![coverage](https://github.com/QuTech-Delft/QMI/blob/stable-0-51/.github/badges/coverage.svg)](https://github.com/QuTech-Delft/QMI/blob/stable-0-51/.github/badges/coverage.svg)
5-
[![tests](https://github.com/QuTech-Delft/QMI/blob/stable-0-51/.github/badges/tests.svg)](https://github.com/QuTech-Delft/QMI/blob/stable-0-51/.github/badges/tests.svg)
4+
[![coverage](https://github.com/QuTech-Delft/QMI/blob/v0.51.2/.github/badges/coverage.svg)](https://github.com/QuTech-Delft/QMI/blob/v0.51.2/.github/badges/coverage.svg)
5+
[![tests](https://github.com/QuTech-Delft/QMI/blob/v0.51.2/.github/badges/tests.svg)](https://github.com/QuTech-Delft/QMI/blob/v0.51.2/.github/badges/tests.svg)
66

77
# Quantum Measurement Infrastructure
88

documentation/sphinx/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
author = 'QuTech'
2525

2626
# The full version, including alpha/beta/rc tags
27-
release = '0.51.2-beta.0'
27+
release = '0.51.2'
2828

2929
# The default master_doc used to be 'index', but it was changed to 'contents'.
3030
# Override that here (maybe rename the file to the new default later).

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Issues = "https://github.com/QuTech-Delft/QMI/issues"
1010

1111
[project]
1212
name="qmi"
13-
version="0.51.2-beta.0"
13+
version="0.51.2"
1414
description="The Quantum Measurement Infrastructure framework"
1515
readme = {file = "README.md", content-type = "text/markdown"}
1616
license = {file = "LICENSE.md"}

qmi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import atexit
88

99

10-
__version__ = "0.51.2-beta.0"
10+
__version__ = "0.51.2"
1111

1212

1313
# Check Python version.

0 commit comments

Comments
 (0)