Skip to content

Commit

Permalink
[release] Release prep 1.2.0 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishek776 committed Oct 28, 2016
1 parent 269cb05 commit eeca677
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions Changelog
Expand Up @@ -2,6 +2,13 @@
Changelog
==========

1.2.0
=====
:release-date: 2016-10-28 06:00 P.M PDT
:release-by: Abhishek Fatehpuria

- [oauth2] Support url-encoded requests for oauth

1.1.1
=====
:release-date: 2016-09-13 06:00 P.M PDT
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -5,7 +5,7 @@

|build-status| |codecov| |license| |wheel| |pyversion| |pyimp|

:Version: 1.1.1
:Version: 1.2.0
:Web: https://deux.readthedocs.org/
:Download: https://pypi.python.org/pypi/deux
:Source: https://github.com/robinhood/deux
Expand Down Expand Up @@ -40,7 +40,7 @@ or from source.
Requirements
------------

``deux`` version 1.1.1 runs on Python (2.7, 3.4, 3.5).
``deux`` version 1.2.0 runs on Python (2.7, 3.4, 3.5).

Installing with pip
-------------------
Expand Down
2 changes: 1 addition & 1 deletion deux/__init__.py
Expand Up @@ -12,7 +12,7 @@
'version_info_t', ('major', 'minor', 'micro', 'releaselevel', 'serial'),
)

VERSION = version_info = version_info_t(1, 1, 1, '', '')
VERSION = version_info = version_info_t(1, 2, 0, '', '')

__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
__author__ = 'Robinhood Markets'
Expand Down
2 changes: 1 addition & 1 deletion docs/includes/installation.txt
Expand Up @@ -9,7 +9,7 @@ or from source.
Requirements
------------

``deux`` version 1.1.1 runs on Python (2.7, 3.4, 3.5).
``deux`` version 1.2.0 runs on Python (2.7, 3.4, 3.5).

Installing with pip
-------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/includes/introduction.txt
@@ -1,4 +1,4 @@
:Version: 1.1.1
:Version: 1.2.0
:Web: https://deux.readthedocs.org/
:Download: https://pypi.python.org/pypi/deux
:Source: https://github.com/robinhood/deux
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -17,7 +17,7 @@ def _pyimp():

NAME = 'deux'

E_UNSUPPORTED_PYTHON = '%s 1.1.1 requires %%s %%s or later!' % (NAME,)
E_UNSUPPORTED_PYTHON = '%s 1.2.0 requires %%s %%s or later!' % (NAME,)

PYIMP = _pyimp()
PY26_OR_LESS = sys.version_info < (2, 7)
Expand Down

0 comments on commit eeca677

Please sign in to comment.