Skip to content

Commit

Permalink
Bump 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Sep 20, 2023
1 parent c57feda commit 717297c
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egobox"
version = "0.10.1-post1"
version = "0.11.0"
authors = ["Rémi Lafage <[email protected]>"]
edition = "2018"
description = "A toolbox for efficient global optimization"
Expand Down Expand Up @@ -30,10 +30,10 @@ persistent-ego = ["egobox-ego/persistent"]
blas = ["ndarray/blas", "egobox-gp/blas", "egobox-moe/blas", "egobox-ego/blas"]

[dependencies]
egobox-doe = { version = "0.10.1", path = "./doe" }
egobox-gp = { version = "0.10.1", path = "./gp" }
egobox-moe = { version = "0.10.1", path = "./moe", features = ["persistent"] }
egobox-ego = { version = "0.10.1", path = "./ego", features = ["persistent"] }
egobox-doe = { version = "0.11.0", path = "./doe" }
egobox-gp = { version = "0.11.0", path = "./gp" }
egobox-moe = { version = "0.11.0", path = "./moe", features = ["persistent"] }
egobox-ego = { version = "0.11.0", path = "./ego", features = ["persistent"] }

linfa = { version = "0.6.1", default-features = false }

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ Depending on the sub-packages you want to use, you have to add following declara

```text
[dependencies]
egobox-doe = { version = "0.10.0" }
egobox-gp = { version = "0.10.0" }
egobox-moe = { version = "0.10.0" }
egobox-ego = { version = "0.10.0" }
egobox-doe = { version = "0.11.0" }
egobox-gp = { version = "0.11.0" }
egobox-moe = { version = "0.11.0" }
egobox-ego = { version = "0.11.0" }
```

### Features
Expand Down Expand Up @@ -86,7 +86,7 @@ Otherwise, you can choose an external BLAS/LAPACK backend available through the
Thus, for instance, to use `gp` with the Intel MKL BLAS/LAPACK backend, you could specify in your `Cargo.toml` the following features:
```text
[dependencies]
egobox-gp = { version = "0.10.0", features = ["blas", "linfa/intel-mkl-static"] }
egobox-gp = { version = "0.11.0", features = ["blas", "linfa/intel-mkl-static"] }
```
or you could run the `gp` example as follows:
``` bash
Expand Down
2 changes: 1 addition & 1 deletion doe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egobox-doe"
version = "0.10.1"
version = "0.11.0"
authors = ["Rémi Lafage <[email protected]>"]
edition = "2018"
description = "A library for design of experiments"
Expand Down
8 changes: 4 additions & 4 deletions ego/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egobox-ego"
version = "0.10.1"
version = "0.11.0"
authors = ["Rémi Lafage <[email protected]>"]
edition = "2018"
description = "A library for efficient global optimization"
Expand All @@ -16,11 +16,11 @@ persistent = ["serde_json"]
blas = ["ndarray-linalg", "linfa/ndarray-linalg", "linfa-pls/blas"]

[dependencies]
egobox-doe = { version = "0.10.1", path = "../doe", features = [
egobox-doe = { version = "0.11.0", path = "../doe", features = [
"serializable",
] }
egobox-gp = { version = "0.10.1", path = "../gp", features = ["serializable"] }
egobox-moe = { version = "0.10.1", path = "../moe", features = [
egobox-gp = { version = "0.11.0", path = "../gp", features = ["serializable"] }
egobox-moe = { version = "0.11.0", path = "../moe", features = [
"serializable",
] }

Expand Down
4 changes: 2 additions & 2 deletions gp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egobox-gp"
version = "0.10.1"
version = "0.11.0"
authors = ["Rémi Lafage <[email protected]>"]
edition = "2018"
description = "A library for gaussian process modeling"
Expand All @@ -16,7 +16,7 @@ serializable = ["serde", "linfa/serde"]
blas = ["ndarray-linalg", "linfa/ndarray-linalg", "linfa-pls/blas"]

[dependencies]
egobox-doe = { version = "0.10.1", path = "../doe" }
egobox-doe = { version = "0.11.0", path = "../doe" }

linfa = { version = "0.6.1", default-features = false }
linfa-pls = { version = "0.6.1", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions moe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egobox-moe"
version = "0.10.1"
version = "0.11.0"
authors = ["Rémi Lafage <[email protected]>"]
edition = "2018"
description = "A library for mixture of expert gaussian processes"
Expand Down Expand Up @@ -33,8 +33,8 @@ blas = [
]

[dependencies]
egobox-doe = { version = "0.10.1", path = "../doe" }
egobox-gp = { version = "0.10.1", path = "../gp" }
egobox-doe = { version = "0.11.0", path = "../doe" }
egobox-gp = { version = "0.11.0", path = "../gp" }

linfa = { version = "0.6.1", default-features = false }
linfa-clustering = { version = "0.6.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ python-source = "python"

[tool.poetry]
name = "egobox"
version = "0.10.1.post1"
version = "0.11.0"
description = "Python binding for egobox EGO optimizer written in Rust"
authors = ["Rémi Lafage <[email protected]>"]

Expand Down

0 comments on commit 717297c

Please sign in to comment.