Skip to content

Commit

Permalink
Prepare for next 2.0.0 alpha release
Browse files Browse the repository at this point in the history
Bump version to 2.0.0a4.

Add new release notes.

Start running tests against the final build of Python 3.6.0
(instead of the development branch).
  • Loading branch information
jmoldow committed Jan 18, 2017
1 parent f3057aa commit 5ffb230
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ matrix:
env: TOX_ENV=py34
- python: 3.5
env: TOX_ENV=py35
- python: "3.6-dev"
- python: 3.6
env: TOX_ENV=py36
- python: pypy
env: TOX_ENV=pypy PYPY_VERSION='4.0.0'
Expand Down
4 changes: 2 additions & 2 deletions .travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
pyenv global 3.5.0
;;
py36)
pyenv install 3.6-dev
pyenv global 3.6-dev
pyenv install 3.6.0
pyenv global 3.6.0
;;
pypy)
pyenv install "pypy-${PYPY_VERSION}"
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ Release History
- Added an ``Event`` class.
- Moved ``metadata()`` method to ``Item`` so it's now available for ``Folder``
as well as ``File``.
- The ``BaseAPIJSONObject`` baseclass (which is a superclass of all API
response objects) now supports ``__contains__`` and ``__iter__``. They behave
the same as for ``Mapping``. That is, ``__contains__`` checks for JSON keys
in the object, and ``__iter__`` yields all of the object's keys.

**Other**

Expand Down
2 changes: 1 addition & 1 deletion boxsdk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from __future__ import unicode_literals, absolute_import


__version__ = '2.0.0a3'
__version__ = '2.0.0a4'

0 comments on commit 5ffb230

Please sign in to comment.