From 9d46ad7c873fc400a8cac4fdd760ca99080915d6 Mon Sep 17 00:00:00 2001 From: "Nathaniel D. Hoffman" <36977879+denehoffman@users.noreply.github.com> Date: Tue, 14 Jul 2026 18:13:07 -0500 Subject: [PATCH] chore(main): release 0.28.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1f59b68..9800444 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.27.1" + ".": "0.28.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index eb48ee7..e0d5cb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.28.0](https://github.com/denehoffman/ganesh/compare/v0.27.1...v0.28.0) (2026-07-14) + + +### ⚠ BREAKING CHANGES + +* RealScalar implementations must provide rem_euclid. + +### Features + +* Genericize numerical backends and downstream bindings ([#94](https://github.com/denehoffman/ganesh/issues/94)) ([53da02f](https://github.com/denehoffman/ganesh/commit/53da02faa2a9a1ac0ff8216e174678e66793a75d)) + ## [0.27.1](https://github.com/denehoffman/ganesh/compare/v0.27.0...v0.27.1) (2026-05-19) diff --git a/Cargo.lock b/Cargo.lock index 9635951..c63b9ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -332,7 +332,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "ganesh" -version = "0.27.1" +version = "0.28.0" dependencies = [ "approx", "codspeed-criterion-compat", diff --git a/Cargo.toml b/Cargo.toml index d8e3dbe..a37a4be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ganesh" -version = "0.27.1" +version = "0.28.0" edition = "2021" description = "Minimization and sampling in Rust, simplified" documentation = "https://docs.rs/ganesh"