From 1bde5376a634c3d2ec9850279e47745f396cef9f Mon Sep 17 00:00:00 2001 From: geo-ant <54497890+geo-ant@users.noreply.github.com> Date: Sun, 1 Dec 2024 15:16:13 +0100 Subject: [PATCH 1/4] fix missing doc links in tests --- src/model/mod.rs | 1 + src/test_helpers/mod.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/model/mod.rs b/src/model/mod.rs index d7cfc3d..d7ec9c0 100644 --- a/src/model/mod.rs +++ b/src/model/mod.rs @@ -12,6 +12,7 @@ pub mod errors; pub mod builder; mod model_basis_function; #[cfg(any(test, doctest))] +#[allow(missing_docs)] pub mod test; /// Represents an abstraction for a separable nonlinear model diff --git a/src/test_helpers/mod.rs b/src/test_helpers/mod.rs index ba714f0..d49db20 100644 --- a/src/test_helpers/mod.rs +++ b/src/test_helpers/mod.rs @@ -1,3 +1,4 @@ +#![allow(missing_docs)] pub mod differentiation; use nalgebra::{DVector, Scalar}; From 1e089ef6b0ae1a8110a2a5900f371b1cb829e6ac Mon Sep 17 00:00:00 2001 From: geo-ant <54497890+geo-ant@users.noreply.github.com> Date: Sun, 1 Dec 2024 19:45:11 +0100 Subject: [PATCH 2/4] support banner --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0f54adf..e2af19b 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ [![crates](https://img.shields.io/crates/v/varpro)](https://crates.io/crates/varpro) [![Coverage Status](https://coveralls.io/repos/github/geo-ant/varpro/badge.svg?branch=main)](https://coveralls.io/github/geo-ant/varpro?branch=main) ![maintenance-status](https://img.shields.io/badge/maintenance-actively--developed-brightgreen.svg) +[![crates](https://raw.githubusercontent.com/geo-ant/user-content/refs/heads/main/ko-fi-support.svg)](https://ko-fi.com/geoant) Nonlinear function fitting made simple. This library provides robust and fast least-squares fitting of a wide class of model functions to data. From 01710f787dfd3691dc602bf1c100a8a487008a83 Mon Sep 17 00:00:00 2001 From: geo-ant <54497890+geo-ant@users.noreply.github.com> Date: Sun, 1 Dec 2024 19:55:51 +0100 Subject: [PATCH 3/4] remove support section, replace by banner --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index e2af19b..5fd6aa8 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,6 @@ Nonlinear function fitting made simple. This library provides robust and fast least-squares fitting of a wide class of model functions to data. It uses the VarPro algorithm to achieve this, hence the name. -## Support - -If you like this crate, recommend it to others. You can also [buy me a coffee](https://ko-fi.com/geoant) -if you feel like it. - ## Introduction This crate implements a powerful algorithm to fit model functions to data, From c3ee178dde552e3ca1ec4028fe3bf07585786c68 Mon Sep 17 00:00:00 2001 From: geo-ant <54497890+geo-ant@users.noreply.github.com> Date: Sun, 1 Dec 2024 20:03:48 +0100 Subject: [PATCH 4/4] bump version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bf344d0..e529378 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "varpro" -version = "0.10.0" +version = "0.10.1" authors = ["geo-ant"] edition = "2021" license = "MIT"