Skip to content

Commit dc75dd9

Browse files
authored
Merge pull request #89 from StevenBtw/dev
release 0.6.1
2 parents a0309a9 + 22c98e5 commit dc75dd9

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
What broke, what got fixed, and what's new.
44

5+
## [0.6.1] - 2026-02-01
6+
7+
### Fixed
8+
9+
- **Build:** Fixed LICENSE file not included in source distribution.
10+
- **CI:** Updated macOS runner from deprecated macos-13 to macos-14.
11+
- **PyPI:** Normalized package name to lowercase `solvor` for wheel compatibility.
12+
513
## [0.6.0] - 2026-02-01
614

715
**Rust acceleration!** Optional Rust backend for graph algorithms with 3-60x speedup, ported from [Grafeo](https://github.com/GrafeoDB/grafeo).

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "solvor"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
description = "Solvor all your optimization needs."
55
readme = "README.md"
66
requires-python = ">=3.12"

solvor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Solvor - Pure Python Optimization Solvers."""
22

3-
__version__ = "0.6.0"
3+
__version__ = "0.6.1"
44

55
# Register Rust adapters (must be after algorithm imports)
66
import solvor.rust.adapters # noqa: F401, E402

0 commit comments

Comments
 (0)