File tree Expand file tree Collapse file tree 3 files changed +34
-4
lines changed Expand file tree Collapse file tree 3 files changed +34
-4
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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' ,
Original file line number Diff line number Diff 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}
2222deps = -rrequirements-dev.txt
2323
24- [testenv:readme ]
24+ [testenv:rst ]
2525deps =
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]
3133commands =
You can’t perform that action at this time.
0 commit comments