Skip to content

Commit

Permalink
Version 0.2.4 (#442)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Balandat authored and facebook-github-bot committed May 13, 2020
1 parent 3dbe941 commit 227db6d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
The release log for BoTorch.


## [0.2.4] - May 12, 2020

Bugfix Release

#### Bug fixes
* There was a mysterious issue with the 0.2.3 wheel on pypi, where part of 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.
* Preserve order in ChainedOutcomeTransform (#440).

#### New Features
* Utilities for estimating the feasible volume under outcome constraints (#437).


## [0.2.3] - Apr 27, 2020

Pairwise GP for Preference Learning, Sampling Strategies.
Expand Down
2 changes: 1 addition & 1 deletion botorch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from .utils import manual_seed


__version__ = "0.2.3"
__version__ = "0.2.4"


__all__ = [
Expand Down

0 comments on commit 227db6d

Please sign in to comment.