Skip to content

Commit 564e0f2

Browse files
committed
release v0.6.3
Also fix CLI version to import dynamically instead of hardcoding.
1 parent de9c154 commit 564e0f2

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [Unreleased]
5+
## [0.6.3]
66

77
- fix condition extraction across all plotting functions: condition names are now extracted from `run_info` params (authoritative source) instead of fragile `_extract_conditions_from_key()` string-splitting, which was broken for multi-word condition names (e.g. "Pre-treatment", "Wild Type"). Affected functions: `plot_gene_expression`, `volcano_da`, `volcano_de`, `multi_volcano_da`, `direction_barplot`
88
- silent fallback to pattern-matched layers/keys from potentially wrong runs has been replaced with explicit warnings in `plot_gene_expression` and `volcano_de` (FDR/PTP key inference)

kompot/cli/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# AFTER setting thread limit environment variables
88

99
from .utils import setup_logging
10+
from ..version import __version__
1011

1112

1213
def _set_early_thread_limits(args_list):
@@ -67,7 +68,7 @@ def main():
6768
parser.add_argument(
6869
'--version',
6970
action='version',
70-
version='%(prog)s 0.6.0'
71+
version=f'%(prog)s {__version__}'
7172
)
7273

7374
parser.add_argument(

kompot/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version information."""
22

3-
__version__ = "0.6.2"
3+
__version__ = "0.6.3"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ignore = ["E203", "W503"]
3737

3838
[project]
3939
name = "kompot"
40-
version = "0.6.2"
40+
version = "0.6.3"
4141
description = "Differential abundance and gene expression analysis using Mahalanobis distance with JAX backend"
4242
readme = "README.md"
4343
authors = [

0 commit comments

Comments
 (0)