From 22c98e5aaa53f14cd8ea69ce724df2e9dd9e8e60 Mon Sep 17 00:00:00 2001 From: StevenBtw Date: Sun, 1 Feb 2026 14:32:34 +0100 Subject: [PATCH] release 0.6.1 --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- solvor/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 564297a..913d53d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/pyproject.toml b/pyproject.toml index e944ed2..dfde783 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/solvor/__init__.py b/solvor/__init__.py index 995d194..ce8a26f 100644 --- a/solvor/__init__.py +++ b/solvor/__init__.py @@ -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