From 48a727b91128e9f75f3cb848c7fea33bfef40659 Mon Sep 17 00:00:00 2001 From: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com> Date: Thu, 30 Jul 2020 15:47:13 -0500 Subject: [PATCH] Bump version (#29) --- scikeras/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scikeras/__init__.py b/scikeras/__init__.py index 44bb26811..d5a5f2056 100644 --- a/scikeras/__init__.py +++ b/scikeras/__init__.py @@ -1,4 +1,4 @@ """Top-level package for Scikit-Learn Wrapper for Keras.""" __author__ = """Adrian Garcia Badaracco""" -__version__ = "0.1.7" +__version__ = "0.1.8" diff --git a/setup.cfg b/setup.cfg index f61c7e7ec..b4fbf2604 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.7 +current_version = 0.1.8 commit = True tag = True diff --git a/setup.py b/setup.py index 254fe7e7a..540b0d6f4 100644 --- a/setup.py +++ b/setup.py @@ -47,6 +47,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/adriangb/scikeras", - version="0.1.7", + version="0.1.8", zip_safe=False, )