Skip to content

Commit 3e6de1d

Browse files
TimoLassmannclaude
andcommitted
Bump version to 3.5.1 for PyPI re-release
v3.5.0 was published to PyPI before bugfixes landed. Bump all version strings so the fixed code can be published as 3.5.1. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 349fda0 commit 3e6de1d

6 files changed

Lines changed: 15 additions & 7 deletions

File tree

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors:
66
family-names: "Lassmann"
77
orcid: "https://orcid.org/0000-0002-0138-2691"
88
title: "Kalign 3: multiple sequence alignment of large datasets"
9-
version: 3.5.0
9+
version: 3.5.1
1010
date-released: 2026-02-27
1111
url: "https://github.com/TimoLassmann/kalign"
1212
repository-code: "https://github.com/TimoLassmann/kalign"

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ include(GenerateExportHeader)
1313

1414
set(KALIGN_LIBRARY_VERSION_MAJOR 3)
1515
set(KALIGN_LIBRARY_VERSION_MINOR 5)
16-
set(KALIGN_LIBRARY_VERSION_PATCH 0)
16+
set(KALIGN_LIBRARY_VERSION_PATCH 1)
1717
set(KALIGN_LIBRARY_VERSION_STRING ${KALIGN_LIBRARY_VERSION_MAJOR}.${KALIGN_LIBRARY_VERSION_MINOR}.${KALIGN_LIBRARY_VERSION_PATCH})
1818

1919

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
2026-02-27 Timo Lassmann <timolassmann@icloud.com>
22

3+
* version 3.5.1 - Bugfix release
4+
- Fix memory leak in build_tree_from_pairwise (realign/ensemble)
5+
- Move seaborn from core to optional dependency
6+
- Fix benchmark workflow to handle unavailable datasets gracefully
7+
- Black formatting fixes
8+
39
* version 3.5.0 - Three modes
410
Kalign now has three modes: default (best general-purpose), fast
511
(same as v3.4), and precise (ensemble, highest accuracy, ~10x slower).

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const std = @import("std");
22
const builtin = @import("builtin");
33
const ArrayList = std.ArrayList;
44

5-
const kalignPackageVersion = "3.5.0";
5+
const kalignPackageVersion = "3.5.1";
66

77
const targets: []const std.Target.Query = &.{
88
.{ .cpu_arch = .aarch64, .os_tag = .macos },

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "scikit_build_core.build"
88

99
[project]
1010
name = "kalign-python"
11-
version = "3.5.0"
11+
version = "3.5.1"
1212
description = "Python wrapper for the Kalign multiple sequence alignment engine"
1313
readme = "README-python.md"
1414
license = "Apache-2.0"

uv.lock

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)