Bump to version 6.1.1

This commit is contained in:
Nick Lang
2018-01-05 19:51:20 -07:00
parent 43ddb3d56b
commit ef08323d22
3 changed files with 9 additions and 4 deletions
+5
View File
@@ -6,6 +6,11 @@ Changelog
6.1.0 (dev) 6.1.0 (dev)
----------- -----------
6.1.1 (2017-01-05)
------------------
* Updates to SSLContext logic to make it easier to use and have saner defaults.
* Doc updates
6.0.0 (2017-11-14) 6.0.0 (2017-11-14)
------------------ ------------------
+1 -1
View File
@@ -1,6 +1,6 @@
from __future__ import absolute_import from __future__ import absolute_import
VERSION = (6, 1, 0, 'dev') VERSION = (6, 1, 1)
__version__ = VERSION __version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION)) __versionstr__ = '.'.join(map(str, VERSION))
+1 -1
View File
@@ -3,7 +3,7 @@ from os.path import join, dirname
from setuptools import setup, find_packages from setuptools import setup, find_packages
import sys import sys
VERSION = (6, 1, 0, 'dev') VERSION = (6, 1, 1)
__version__ = VERSION __version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION)) __versionstr__ = '.'.join(map(str, VERSION))