diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index da07b0a42..ae67560f4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,8 @@ jobs: - name: Install click run: pip install click!=8.3.0 - name: Run Tests - run: hatch run test_all.py3.10:test + run: hatch run test_all.py3.10:pytest -n 2 tests + timeout-minutes: 10 test_py_311: runs-on: ubuntu-latest @@ -47,7 +48,8 @@ jobs: - name: Install click run: pip install click!=8.3.0 - name: Run Tests - run: hatch run test_all.py3.11:test + run: hatch run test_all.py3.11:pytest -n 2 tests + timeout-minutes: 10 test_py_312: runs-on: ubuntu-latest @@ -65,7 +67,8 @@ jobs: - name: Install click run: pip install click!=8.3.0 - name: Run Tests - run: hatch run test_all.py3.12:test + run: hatch run test_all.py3.12:pytest -n 2 tests + timeout-minutes: 10 lint: runs-on: ubuntu-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index 3431e1264..c3181a9f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this packages will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.113] - 2026-01-28 + +### Added + +- Mass spectrometry mapper (#1122) +- Qiacuity dPCR - add handle for first column containing the well (#1129) + ## [0.1.112] - 2025-12-15 ### Added diff --git a/src/allotropy/__about__.py b/src/allotropy/__about__.py index 4f34b324d..b32cdabfc 100644 --- a/src/allotropy/__about__.py +++ b/src/allotropy/__about__.py @@ -1 +1 @@ -__version__ = "0.1.112" +__version__ = "0.1.113"