From 038094e16d847bf480a6ad9974e50674f5ab4ba1 Mon Sep 17 00:00:00 2001 From: Martin Rusev Date: Tue, 14 Aug 2018 08:24:18 -0700 Subject: [PATCH] Update version and changelog --- CHANGELOG.md | 4 ++-- imbox/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a545885..cfcdeab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ -## 0.9.6 [unreleased] +## 0.9.6 (16 August 2018) IMPROVEMENTS: * Vendors package, adding provider specific functionality ([#139](https://github.com/martinrusev/imbox/pull/139)) - Contributed by @zevaverbach * Type hints for every method and function ([#136](https://github.com/martinrusev/imbox/pull/136)) - Contributed by @zevaverbach * Move all code out of __init__.py and into a separate module ([#130](https://github.com/martinrusev/imbox/pull/130)) - Contributed by @zevaverbach - * Enchance `messages' generator: ([#129](https://github.com/martinrusev/imbox/pull/129)) - Contributed by @zevaverbach + * Enhance `messages' generator: ([#129](https://github.com/martinrusev/imbox/pull/129)) - Contributed by @zevaverbach ## 0.9.5 (5 December 2017) diff --git a/imbox/__init__.py b/imbox/__init__.py index 232f7a2..fb9f023 100644 --- a/imbox/__init__.py +++ b/imbox/__init__.py @@ -1,6 +1,6 @@ from imbox.imbox import Imbox -__version_info__ = (0, 9, 5) +__version_info__ = (0, 9, 6) __version__ = '.'.join([str(x) for x in __version_info__])