From 36a9dc65b399fa537404cbd3884f69b0d6f95719 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 May 2026 12:34:27 +0000 Subject: [PATCH] chore(master): release 0.10.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ setup.cfg | 2 +- setup.py | 2 +- src/mpralib/__init__.py | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4c09055..cc819e6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.4" + ".": "0.10.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 98befca..45b8444 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.5](https://github.com/kircherlab/MPRAlib/compare/v0.10.4...v0.10.5) (2026-05-07) + + +### Bug Fixes + +* **cli:** :bug: Implemented an overflow-safe fix for the sigmoid calculation on postProbEffect ([#108](https://github.com/kircherlab/MPRAlib/issues/108)) ([0c694c6](https://github.com/kircherlab/MPRAlib/commit/0c694c6589dc0456f39a703e067df67ef3b98d2b)) + ## [0.10.4](https://github.com/kircherlab/MPRAlib/compare/v0.10.3...v0.10.4) (2026-05-04) diff --git a/setup.cfg b/setup.cfg index 666fc68..704637a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.4 +current_version = 0.10.5 commit = True tag = True diff --git a/setup.py b/setup.py index 8065a2e..75edd73 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="mpralib", - version="0.10.4", + version="0.10.5", packages=find_packages(where="src"), package_dir={"": "src"}, include_package_data=True, diff --git a/src/mpralib/__init__.py b/src/mpralib/__init__.py index d9b054a..a67aac0 100644 --- a/src/mpralib/__init__.py +++ b/src/mpralib/__init__.py @@ -1 +1 @@ -__version__ = "0.10.4" +__version__ = "0.10.5"