From 30d0b7c21ce4c817e36dd87ade02c00f3aaeebe7 Mon Sep 17 00:00:00 2001 From: Edwin Onuonga Date: Thu, 21 May 2020 22:00:48 +0100 Subject: [PATCH] Release v0.7.1 --- CHANGELOG.md | 8 ++++++++ docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f7444d9..da3c49f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [0.7.1](https://github.com/eonu/sequentia/releases/tag/v0.7.1) + +#### Major changes + +- Fix deserialization for `KNNClassifier`. ([#93](https://github.com/eonu/sequentia/pull/93)) + - Sort HDF5 keys before loading as `numpy.ndarray`s. + - Pass `weighting` function into deserialization constructor. + ## [0.7.0](https://github.com/eonu/sequentia/releases/tag/v0.7.0) #### Major changes diff --git a/docs/conf.py b/docs/conf.py index f7e3e078..b9f4a392 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ author = 'Edwin Onuonga' # The full version, including alpha/beta/rc tags -release = '0.7.0' +release = '0.7.1' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index a12f9b35..4047993b 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from __future__ import print_function from setuptools import setup, find_packages -VERSION = '0.7.0' +VERSION = '0.7.1' with open('README.md', 'r') as fh: long_description = fh.read()