Skip to content

Commit 0d11a96

Browse files
committed
Merge pull request #23 from box/history
Bump version to 1.1.0.
2 parents 49042c7 + c6cd889 commit 0d11a96

File tree

3 files changed

+34
-4
lines changed

3 files changed

+34
-4
lines changed

HISTORY.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
.. :changelog:
2+
3+
Release History
4+
---------------
5+
6+
1.1.0 (2015-03-02)
7+
++++++++++++++++++
8+
9+
**Features**
10+
11+
- The SDK now supports Box metadata. See the `metadata docs <https://developers.box.com/metadata-api/>`_ for
12+
more information.
13+
14+
- The object paging API has been improved. SDK extensions that need fine-grained control over when the next "page"
15+
of API results will be fetched can now do that.
16+
17+
**Example Code**
18+
19+
- The example code has been improved to be more robust and to work with all Python versions supported by the SDK
20+
(CPython 2.6-2.7, CPython 3.3-3.4, and PyPy).
21+
22+
- The example code has an example on how to use the new metadata feature.
23+
24+
- The README has improved code examples.
25+
26+
**Bugfixes**
27+
28+
- Oauth2 redirect URIs containing non-ASCII characters are now supported.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def main():
5757
install_requires.append('ordereddict>=1.1')
5858
setup(
5959
name='boxsdk',
60-
version='1.0.2',
60+
version='1.1.0',
6161
description='Official Box Python SDK',
6262
long_description=open(join(base_dir, 'README.rst')).read(),
6363
author='Box',

tox.ini

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ envlist =
1212
pypy,
1313
pep8,
1414
pylint,
15-
readme,
15+
rst,
1616
docs,
1717
coverage
1818

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

24-
[testenv:readme]
24+
[testenv:rst]
2525
deps =
2626
docutils
2727
pygments
28-
commands = rst2html.py --strict README.rst
28+
commands =
29+
rst2html.py --strict README.rst
30+
rst2html.py --strict HISTORY.rst
2931

3032
[testenv:pep8]
3133
commands =

0 commit comments

Comments
 (0)