Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
rmitsuboshi committed Jan 13, 2025
1 parent 82e2dd0 commit 58390ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "miniboosts"
version = "0.3.6"
version = "0.4.0"
authors = ["rmitsuboshi <rmitsuboshi.github@gmail.com>"]
edition = "2021"

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 58390ab

Please sign in to comment.