From 6bcd1e884e1e5aec69dade515132bc6fa172aa12 Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Mon, 26 Aug 2019 08:38:41 -0400 Subject: [PATCH] bump to version 1.1.2 See the changelog for more details. --- CHANGELOG.md | 11 +++++++++++ docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1302025..fb3e939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## Version 0.1.2 + +This version adds some bugfixes. + +* Allow exporting interface multiple times (#4) +* Fix super call in exceptions (#5) +* Add timeout support on `introspect` (#7) +* Add unix fd type 'h' to valid tokens (#9) +* Dont use future annotations (#10) +* Fix variant validator (d724fc2) + ## Version 0.1.1 This version adds some major features and breaking changes. diff --git a/docs/conf.py b/docs/conf.py index 63652d6..5487949 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '0.0.1' +release = '0.1.2' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 6cc442c..9231fe0 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ EMAIL = 'tony@dubstepdish.com' AUTHOR = 'Tony Crisci' REQUIRES_PYTHON = '>=3.6.0' -VERSION = '0.1.1' +VERSION = '0.1.2' # What packages are required for this module to be executed? REQUIRED = []