Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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

## [0.6.1] - 2026-02-01

### Fixed

- **Build:** Fixed LICENSE file not included in source distribution.
- **CI:** Updated macOS runner from deprecated macos-13 to macos-14.
- **PyPI:** Normalized package name to lowercase `solvor` for wheel compatibility.

## [0.6.0] - 2026-02-01

**Rust acceleration!** Optional Rust backend for graph algorithms with 3-60x speedup, ported from [Grafeo](https://github.com/GrafeoDB/grafeo).
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "solvor"
version = "0.6.0"
version = "0.6.1"
description = "Solvor all your optimization needs."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion solvor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Solvor - Pure Python Optimization Solvers."""

__version__ = "0.6.0"
__version__ = "0.6.1"

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