Skip to content

Commit 227db6d

Browse files
Balandatfacebook-github-bot
authored andcommitted
Version 0.2.4 (#442)
Summary: This is a bump mainly to fix a mysterious issue with the python wheel on pypi being broken. Specifically, in that wheel the `botorch/optim/utils.py` file was not included, which resulted in an `ImportError` for many central components of the code. Interestingly, the source dist (built with the same command) did not have this issue. Pull Request resolved: #442 Reviewed By: sdaulton Differential Revision: D21538808 Pulled By: Balandat fbshipit-source-id: 4a963d101c28d17d18897584ccadc9f492a0c914
1 parent 3dbe941 commit 227db6d

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
33
The release log for BoTorch.
44

55

6+
## [0.2.4] - May 12, 2020
7+
8+
Bugfix Release
9+
10+
#### Bug fixes
11+
* There was a mysterious issue with the 0.2.3 wheel on pypi, where part of the
12+
`botorch/optim/utils.py` file was not included, which resulted in an `ImportError` for
13+
many central components of the code. Interestingly, the source dist (built with the
14+
same command) did not have this issue.
15+
* Preserve order in ChainedOutcomeTransform (#440).
16+
17+
#### New Features
18+
* Utilities for estimating the feasible volume under outcome constraints (#437).
19+
20+
621
## [0.2.3] - Apr 27, 2020
722

823
Pairwise GP for Preference Learning, Sampling Strategies.

botorch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from .utils import manual_seed
2424

2525

26-
__version__ = "0.2.3"
26+
__version__ = "0.2.4"
2727

2828

2929
__all__ = [

0 commit comments

Comments
 (0)