From 1283e87f70367722feb4f95949e7e85611f61dbd Mon Sep 17 00:00:00 2001 From: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com> Date: Sun, 6 Dec 2020 12:11:30 -0600 Subject: [PATCH] Prepare for v0.2.1 release (#147) --- HISTORY.md | 12 ++++++++++++ pyproject.toml | 2 +- scikeras/__init__.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 07569c502..d73b2e859 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,17 @@ # History +## 0.2.1 (2020-12-06) + +Thank you to @stsievert for your continued support and contributions! + +Release notes: + +* Support autoencoders and more general use cases via BaseWrapper (#123) +* Fix slowdown caused by sample_weight processing +(reported in [DaskML#764](https://github.com/dask/dask-ml/issues/764), fixed in #123) +* Documentation improvements (#134, #135, #145 and #138) +* Fix the `initialize` method in KerasClassifier (#140) + ## 0.2.0 (2020-10-03) * Move data transformations to a Scikit-Learn Transformer based interface (#88) diff --git a/pyproject.toml b/pyproject.toml index 80db84e39..530eca0b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scikeras" -version = "0.2.0" +version = "0.2.1" description = "Scikit-Learn API wrapper for Keras." authors = ["Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>"] license = "MIT" diff --git a/scikeras/__init__.py b/scikeras/__init__.py index d5e65b181..26ed3313a 100644 --- a/scikeras/__init__.py +++ b/scikeras/__init__.py @@ -1,7 +1,7 @@ """Top-level package for Scikit-Learn Wrapper for Keras.""" __author__ = """Adrian Garcia Badaracco""" -__version__ = "0.2.0" +__version__ = "0.2.1" # Monkey patch log_cosh reference