File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ matrix:
2020 env : TOX_ENV=py34
2121 - python : 3.5
2222 env : TOX_ENV=py35
23- - python : " 3.6-dev "
23+ - python : 3.6
2424 env : TOX_ENV=py36
2525 - python : pypy
2626 env : TOX_ENV=pypy PYPY_VERSION='4.0.0'
Original file line number Diff line number Diff line change @@ -42,8 +42,8 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
4242 pyenv global 3.5.0
4343 ;;
4444 py36)
45- pyenv install 3.6-dev
46- pyenv global 3.6-dev
45+ pyenv install 3.6.0
46+ pyenv global 3.6.0
4747 ;;
4848 pypy)
4949 pyenv install " pypy-${PYPY_VERSION} "
Original file line number Diff line number Diff line change @@ -74,6 +74,10 @@ Release History
7474- Added an ``Event `` class.
7575- Moved ``metadata() `` method to ``Item `` so it's now available for ``Folder ``
7676 as well as ``File ``.
77+ - The ``BaseAPIJSONObject `` baseclass (which is a superclass of all API
78+ response objects) now supports ``__contains__ `` and ``__iter__ ``. They behave
79+ the same as for ``Mapping ``. That is, ``__contains__ `` checks for JSON keys
80+ in the object, and ``__iter__ `` yields all of the object's keys.
7781
7882**Other **
7983
Original file line number Diff line number Diff line change 33from __future__ import unicode_literals , absolute_import
44
55
6- __version__ = '2.0.0a3 '
6+ __version__ = '2.0.0a4 '
You can’t perform that action at this time.
0 commit comments