Skip to content

Commit

Permalink
Prepare release 0.13 (#117)
Browse files Browse the repository at this point in the history
* Bump version

* Update changelog

* Remove Dockerfile: default maturin image is enough
  • Loading branch information
relf authored Nov 30, 2023
1 parent 2227e1b commit e97be19
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 35 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
Changes
-------

Version 0.13.0 - unreleased
Version 0.14.0 - unreleased
===========================

Version 0.13.0 - 30/11/2023
===========================

* `ego`: API refactoring to enable `ask-and-tell` interface
* Configuration of Egor is factorize out in `EgorConfig`
* `EgorBuilder` gets a `configure` method to tune the configuration
* `EgorService` structure represent `Egor` when used as service
* Python `Egor` API changes:
* function under optimization is now given via `minimize(fun, max_iters=...)` method
* new method `suggest(xdoe, ydoe)` allows to ask for x suggestion and tell current function evaluations
* new method `get_result(xdoe, ydoe)` to get the best evaluation (ie minimum) from given ones

Version 0.12.0 - 10/11/2023
===========================

Expand Down
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.12.0"
version = "0.13.0"
authors = ["Rémi Lafage <[email protected]>"]
edition = "2021"
description = "A toolbox for efficient global optimization"
Expand Down Expand Up @@ -31,10 +31,10 @@ persistent-ego = ["egobox-ego/persistent"]
blas = ["ndarray/blas", "egobox-gp/blas", "egobox-moe/blas", "egobox-ego/blas"]

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

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

Expand Down
18 changes: 0 additions & 18 deletions Dockerfile

This file was deleted.

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.12.0"
version = "0.13.0"
authors = ["Rémi Lafage <[email protected]>"]
edition = "2021"
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.12.0"
version = "0.13.0"
authors = ["Rémi Lafage <[email protected]>"]
edition = "2021"
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.12.0", path = "../doe", features = [
egobox-doe = { version = "0.13.0", path = "../doe", features = [
"serializable",
] }
egobox-gp = { version = "0.12.0", path = "../gp", features = ["serializable"] }
egobox-moe = { version = "0.12.0", path = "../moe", features = [
egobox-gp = { version = "0.13.0", path = "../gp", features = ["serializable"] }
egobox-moe = { version = "0.13.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.12.0"
version = "0.13.0"
authors = ["Rémi Lafage <[email protected]>"]
edition = "2021"
description = "A library for gaussian process modeling"
Expand All @@ -17,7 +17,7 @@ serializable = ["serde", "linfa/serde"]
blas = ["ndarray-linalg", "linfa/ndarray-linalg", "linfa-pls/blas"]

[dependencies]
egobox-doe = { version = "0.12.0", path = "../doe" }
egobox-doe = { version = "0.13.0", path = "../doe" }

linfa = { version = "0.7", default-features = false }
linfa-pls = { version = "0.7", 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.12.0"
version = "0.13.0"
authors = ["Rémi Lafage <[email protected]>"]
edition = "2021"
description = "A library for mixture of expert gaussian processes"
Expand Down Expand Up @@ -29,8 +29,8 @@ serializable = [
blas = ["ndarray-linalg", "linfa/ndarray-linalg", "linfa-pls/blas"]

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

linfa = { version = "0.7", default-features = false }
linfa-clustering = { version = "0.7", 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.12.0"
version = "0.13.0"
description = "Python binding for egobox EGO optimizer written in Rust"
authors = ["Rémi Lafage <[email protected]>"]
packages = [{ include = "egobox", from = "python" }]
Expand Down

0 comments on commit e97be19

Please sign in to comment.