Skip to content

Commit

Permalink
Merge pull request scikit-optimize#755 from iaroslav-ai/master
Browse files Browse the repository at this point in the history
Bump version numbers for new release
  • Loading branch information
iaroslav-ai authored Apr 21, 2019
2 parents e7d6618 + 19b25cf commit af5450a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Release history

## Version 0.6

Highly composite six.

### New features

* `plot_regret` function for plotting the cumulative regret;
The purpose of such plot is to access how much an optimizer
is effective at picking good points.
* `CheckpointSaver` that can be used to save a
checkpoint after each iteration with skopt.dump
* `Space.from_yaml()`
to allow for external file to define Space parameters

### Bug fixes

* Fixed numpy broadcasting issues in gaussian_ei, gaussian_pi
* Fixed build with newest scikit-learn
* Use native python types inside BayesSearchCV
* Include fit_params in BayesSearchCV refit

### Maintenance

* Added `versioneer` support, to reduce changes with new version of the `skopt`

## Version 0.5.2

### Bug fixes
Expand All @@ -15,7 +40,7 @@

High five!

## New features
### New features

* Single element dimension definition, which can be used to
fix the value of a dimension during optimization.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Important links
Install
-------

The latest released version of scikit-optimize is v0.5.2, which you can install
The latest released version of scikit-optimize is v0.6, which you can install
with:
::

Expand Down
2 changes: 1 addition & 1 deletion skopt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def f(x):
from .utils import expected_minimum
from .utils import load

__version__ = "0.5.2"
__version__ = "0.6"


__all__ = (
Expand Down

0 comments on commit af5450a

Please sign in to comment.