From 540bb5b4e08512d0fa1e9caf2d7a0b1667d9c83e Mon Sep 17 00:00:00 2001 From: mathsman5133 Date: Thu, 25 Apr 2019 13:10:11 +1000 Subject: [PATCH] Version bump to v0.1.2 --- coc/__init__.py | 2 +- docs/changelog.rst | 7 +++++++ setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/coc/__init__.py b/coc/__init__.py index a4afa210..84b7ff1f 100644 --- a/coc/__init__.py +++ b/coc/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = '0.1.1' +__version__ = '0.1.2' from .client import Client from .dataclasses import ( diff --git a/docs/changelog.rst b/docs/changelog.rst index 0a1970a5..04c85f14 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,6 +6,13 @@ Changelog This page keeps a fairly detailed, human readable version of what has changed, and whats new for each version of the lib. +v0.1.2 +-------- +BugFixes +~~~~~~~~~ +- Fixed 2 problems which meant automatic token resets weren't working. + Please report any more bugs! + v0.1.1 -------- BugFixes diff --git a/setup.py b/setup.py index 973973de..1374afac 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open(os.path.join(os.getcwd(), 'requirements.txt')) as f: requirements = f.read().splitlines() -version = '0.1.1' +version = '0.1.2' readme = '' with open('README.rst') as f: