Skip to content

Commit

Permalink
Merge pull request #23 from box/history
Browse files Browse the repository at this point in the history
Bump version to 1.1.0.
  • Loading branch information
Jeff-Meadows committed Mar 2, 2015
2 parents 49042c7 + c6cd889 commit 0d11a96
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
28 changes: 28 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.. :changelog:
Release History
---------------

1.1.0 (2015-03-02)
++++++++++++++++++

**Features**

- The SDK now supports Box metadata. See the `metadata docs <https://developers.box.com/metadata-api/>`_ for
more information.

- The object paging API has been improved. SDK extensions that need fine-grained control over when the next "page"
of API results will be fetched can now do that.

**Example Code**

- The example code has been improved to be more robust and to work with all Python versions supported by the SDK
(CPython 2.6-2.7, CPython 3.3-3.4, and PyPy).

- The example code has an example on how to use the new metadata feature.

- The README has improved code examples.

**Bugfixes**

- Oauth2 redirect URIs containing non-ASCII characters are now supported.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def main():
install_requires.append('ordereddict>=1.1')
setup(
name='boxsdk',
version='1.0.2',
version='1.1.0',
description='Official Box Python SDK',
long_description=open(join(base_dir, 'README.rst')).read(),
author='Box',
Expand Down
8 changes: 5 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ envlist =
pypy,
pep8,
pylint,
readme,
rst,
docs,
coverage

Expand All @@ -21,11 +21,13 @@ commands =
py.test test/ {posargs}
deps = -rrequirements-dev.txt

[testenv:readme]
[testenv:rst]
deps =
docutils
pygments
commands = rst2html.py --strict README.rst
commands =
rst2html.py --strict README.rst
rst2html.py --strict HISTORY.rst

[testenv:pep8]
commands =
Expand Down

0 comments on commit 0d11a96

Please sign in to comment.