From 58390ab82856aac4e4c24a2ec51cfa3cb43d07ed Mon Sep 17 00:00:00 2001 From: rmitsuboshi Date: Mon, 13 Jan 2025 17:23:18 +0900 Subject: [PATCH] update version --- Cargo.toml | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5c73264..0048924 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniboosts" -version = "0.3.6" +version = "0.4.0" authors = ["rmitsuboshi "] edition = "2021" diff --git a/README.md b/README.md index bbc6cbe..c6522df 100644 --- a/README.md +++ b/README.md @@ -22,14 +22,14 @@ that performs significantly better on training examples. Write the following in your `cargo.toml.` ```toml [dependencies] -minibosts = { version = "0.3.6" } +minibosts = { version = "0.4.0" } ``` All boosting algorithms are implemented without [Gurobi][gurobi]. but, if you have a [Gurobi][gurobi] license, you can use the Gurobi version of the algorithms by setting: ```toml [dependencies] -minibosts = { version = "0.3.6", features = ["gurobi"] } +minibosts = { version = "0.4.0", features = ["gurobi"] } ``` > [!CAUTION] @@ -119,12 +119,12 @@ See [Research feature](#research-feature) section for detail. Write the following to `Cargo.toml`. ```TOML -miniboosts = { version = "0.3.6" } +miniboosts = { version = "0.4.0" } ``` If you want to use `gurobi` features, enable the flag: ```TOML -miniboosts = { version = "0.3.6", features = ["gurobi"] } +miniboosts = { version = "0.4.0", features = ["gurobi"] } ``` Here is a sample code: