Skip to content

Commit 91d67cc

Browse files
authored
Merge pull request #215 from josephroque/2.0.0a5-version-bump
Prepare for next 2.0.0 alpha release
2 parents ea32ba5 + b74008c commit 91d67cc

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

HISTORY.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,14 @@ Release History
7979
the same as for ``Mapping``. That is, ``__contains__`` checks for JSON keys
8080
in the object, and ``__iter__`` yields all of the object's keys.
8181

82+
- Added a ``RecentItem`` class.
83+
- Added ``client.get_recent_items()`` to retrieve a user's recently accessed items on Box.
84+
- Added ``BoxObjectCollection`` and subclasses ``LimitOffsetBasedObjectCollection`` and
85+
``MarkerBasedObjectCollection`` to more easily manage paging of objects from an endpoint.
86+
These classes manage the logic of constructing requests to an endpoint and storing the results,
87+
then provide ``__next__`` to easily iterate over the results. The option to return results one
88+
by one or as a ``Page`` of results is also provided.
89+
8290
**Other**
8391

8492
- Added extra information to ``BoxAPIException``.

boxsdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from __future__ import unicode_literals, absolute_import
44

55

6-
__version__ = '2.0.0a4'
6+
__version__ = '2.0.0a5'

0 commit comments

Comments
 (0)