From 3aabca2da0d69f8c03daaf43fc184da851d61111 Mon Sep 17 00:00:00 2001 From: pcmxgti <16561338+pcmxgti@users.noreply.github.com> Date: Fri, 25 Oct 2019 13:41:29 -0400 Subject: [PATCH] Bump version to 1.0.1 (#9) Changes since 1.0.0 are: * Documentation fixes * Minor bugfixes * Improvements in testability * Support for python 3.5 through 3.8 --- docs/README.rst | 2 +- tokendito/__version__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/README.rst b/docs/README.rst index 24c7dbeb..3a73df49 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -121,7 +121,7 @@ Installing from github: ``pip install git+ssh://git@github.com/dowjones/tokendito.git@`` -For instance, ``pip install git+ssh://git@github.com/dowjones/tokendito.git@1.0.0`` +For instance, ``pip install git+ssh://git@github.com/dowjones/tokendito.git@1.0.1`` Troubleshooting: ---------------- diff --git a/tokendito/__version__.py b/tokendito/__version__.py index 1940f8d4..5cab9a48 100644 --- a/tokendito/__version__.py +++ b/tokendito/__version__.py @@ -1,7 +1,7 @@ # vim: set filetype=python ts=4 sw=4 # -*- coding: utf-8 -*- """tokendito version.""" -__version__ = '1.0.0' +__version__ = '1.0.1' __title__ = 'tokendito' __description__ = 'Get AWS STS tokens from Okta SSO' __long_description_content_type__ = 'text/x-rst'