From 227db6d9ed7d0a9ce812870b7cb0765a727f6256 Mon Sep 17 00:00:00 2001 From: Max Balandat Date: Tue, 12 May 2020 23:19:12 -0700 Subject: [PATCH] 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: https://github.com/pytorch/botorch/pull/442 Reviewed By: sdaulton Differential Revision: D21538808 Pulled By: Balandat fbshipit-source-id: 4a963d101c28d17d18897584ccadc9f492a0c914 --- CHANGELOG.md | 15 +++++++++++++++ botorch/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 977f50fb1c..4390bcf79d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/botorch/__init__.py b/botorch/__init__.py index b75b74246f..5863d95fef 100644 --- a/botorch/__init__.py +++ b/botorch/__init__.py @@ -23,7 +23,7 @@ from .utils import manual_seed -__version__ = "0.2.3" +__version__ = "0.2.4" __all__ = [