diff --git a/AUTHORS b/AUTHORS index d6a470f..4449287 100644 --- a/AUTHORS +++ b/AUTHORS @@ -6,3 +6,4 @@ Ben Lopatin Daniel Zohar Matheus Fernandes Scott Nixon +Jason Dorweiler diff --git a/HISTORY.rst b/HISTORY.rst index 56864c5..71ebf20 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ Release history =============== +0.7.0 +----- + +* Place request parameters in the request body for POST and PUT requests. + Allows larger request sizes and solves for `URI Too Large` error. + 0.6.0 ----- diff --git a/docs/conf.py b/docs/conf.py index 779ae6e..5a1edc2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,9 +51,9 @@ copyright = u'2014, Marc Sibson' # built documents. # # The short X.Y version. -version = '0.6' +version = '0.7' # The full version, including alpha/beta/rc tags. -release = '0.6.0' +release = '0.7.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pydiscourse/__init__.py b/pydiscourse/__init__.py index 7a0c13e..6ada6a4 100644 --- a/pydiscourse/__init__.py +++ b/pydiscourse/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '0.6.0' +__version__ = '0.7.0' from pydiscourse.client import DiscourseClient