diff --git a/README.md b/README.md index fb70ba70cf6288a883535aa5914ce17c3ace5ca9..5888c87aa96b8b53d8127b5730e3508f84fec834 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# [aiogremlin 0.0.9](https://pypi.python.org/pypi/gizmo/0.1.12) +# [aiogremlin 0.0.11](https://pypi.python.org/pypi/gizmo/0.1.12) ## [Official Documentation](http://aiogremlin.readthedocs.org/en/latest/) diff --git a/aiogremlin/__init__.py b/aiogremlin/__init__.py index 1afdfad2038d3f633c6bc736db0021687b92d6e0..77ea4d3c73f2e50b0e6c4d4e8bcf6222c7fd632b 100644 --- a/aiogremlin/__init__.py +++ b/aiogremlin/__init__.py @@ -4,4 +4,4 @@ from .exceptions import * from .connector import * from .subprotocol import * -__version__ = "0.0.10" +__version__ = "0.0.11" diff --git a/docs/conf.py b/docs/conf.py index 30a471d45b9915b0512b3e108027e76333077adc..62727651c5b03551d252988a79879f7280b2dfc7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,9 +62,9 @@ author = 'David M. Brown' # built documents. # # The short X.Y version. -version = '0.0.10' +version = '0.0.11' # The full version, including alpha/beta/rc tags. -release = '0.0.10' +release = '0.0.11' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index d714c5f01c8afad02e0083e448ee34cb86c1264b..8fb9b94e5a9ab4e82983b6b0302d6284cc036902 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -12,7 +12,7 @@ based on the `asyncio`_ and `aiohttp`_ libraries. Releases ======== -The latest release of ``aiogremlin`` is **0.0.10**. +The latest release of ``aiogremlin`` is **0.0.11**. Requirements diff --git a/setup.py b/setup.py index 13b44cf8d0052b1b0e11b88f6c11db1c1c487893..ccbea418b652e79d539991d402447afd494782e0 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name="aiogremlin", - version="0.0.10", + version="0.0.11", url="", license="MIT", author="davebshow", @@ -13,7 +13,7 @@ setup( packages=["aiogremlin", "tests"], install_requires=[ "aiohttp==0.16.5", - "aiowebsocketclient==0.0.2" + "aiowebsocketclient==0.0.3" ], test_suite="tests", classifiers=[