Skip to content

Commit 47c9662

Browse files
committed
Release v1.4.3
1 parent 5399717 commit 47c9662

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ ____
7373
Release Notes
7474
-------------
7575

76-
### Next Release
76+
### Version 1.4.3
7777
* Avoid warning about coloring in `plot_trajectories`
7878
* Fix: forward `eigvec_key` to fallback method in `early_cell()`
79-
* Performance optimizations (PR #176):
79+
* Performance optimizations (thanks to [@svdrecbd](https://github.com/svdrecbd) for PR #176):
8080
- Faster max-min waypoint sampling: O(N·K²) → O(N·K)
8181
- PCA slicing optimization to avoid redundant recomputation
8282
- Sparse LU solver for absorption probabilities

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "palantir"
7-
version = "1.4.2"
7+
version = "1.4.3"
88
description = "Palantir for modeling continuous cell state and cell fate choices in single cell data"
99
authors = [
1010
{name = "Palantir development team", email = "manu.talanki@gmail.com"}

src/palantir/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__version__ = importlib.metadata.version("palantir")
77
except importlib.metadata.PackageNotFoundError:
88
# Package is not installed, fall back to hardcoded version
9-
__version__ = "1.4.2" # Should match pyproject.toml
9+
__version__ = "1.4.3" # Should match pyproject.toml
1010

1111
__author__ = "Palantir development team"
1212
__author_email__ = "manu.talanki@gmail.com"

0 commit comments

Comments
 (0)