Skip to content

Commit 8a9d763

Browse files
authored
chore: release 3.1.0 (#701)
1 parent 7ead458 commit 8a9d763

File tree

4 files changed

+32
-1
lines changed

4 files changed

+32
-1
lines changed

.versionrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"types": [
3+
{"type": "feat", "section": "New Features and Enhancements:", "hidden": false},
4+
{"type": "fix", "section": "Bug Fixes:", "hidden": false},
5+
{"type": "build", "section": "Dependency Upgrades:", "hidden": false},
6+
{"type": "chore", "hidden": true},
7+
{"type": "docs", "hidden": true},
8+
{"type": "style", "hidden": true},
9+
{"type": "refactor", "hidden": true},
10+
{"type": "test", "hidden": true},
11+
{"type": "ci", "hidden":true}
12+
]
13+
}

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Release History
22

3+
## [3.1.0](https://github.com/box/box-python-sdk/compare/v3.0.1...v3.1.0) (2022-02-16)
4+
5+
6+
### New Features and Enhancements:
7+
8+
* Add support for Python 3.10 ([#692](https://github.com/box/box-python-sdk/issues/692)) ([d4aed82](https://github.com/box/box-python-sdk/commit/d4aed82831af97305bace9a4588d27b23856c306))
9+
* Add support for Python 3.8, Python 3.9, `pypy-3.7` and `pypy-3.8`. ([#689](https://github.com/box/box-python-sdk/issues/689)) ([0aa94cc](https://github.com/box/box-python-sdk/commit/0aa94cc8a5c4db0fc204b27a60690b73c98a89cb))
10+
* Deprecate `use_index` parameter from `MDQ` of files/folders ([#666](https://github.com/box/box-python-sdk/issues/666)) ([2595720](https://github.com/box/box-python-sdk/commit/25957204b82c878e15dc3d118505a741171e9772))
11+
* Replace external package `mock` with Python standard library `unittest.mock` ([#697](https://github.com/box/box-python-sdk/issues/697)) ([6fd6366](https://github.com/box/box-python-sdk/commit/6fd63667aa7da4c794b4fb880d5c2949efe0073f))
12+
* Upgrade cryptography library to the most recent version. ([#668](https://github.com/box/box-python-sdk/issues/668)) ([9c94d08](https://github.com/box/box-python-sdk/commit/9c94d0878515dc75c1f267e2fb1f189a852772b6)), closes [#667](https://github.com/box/box-python-sdk/issues/667)
13+
14+
### Bug Fixes:
15+
16+
* `UploadSession.commit` returns `None` when retry limit was reached ([#696](https://github.com/box/box-python-sdk/issues/696)) ([9456fe0](https://github.com/box/box-python-sdk/commit/9456fe0124f4ac4e9c8a7bcc49039f07f310c477))
17+
* Add missing `api_call` decorator for `create_upload_session` ([#686](https://github.com/box/box-python-sdk/issues/686)) ([3510d3a](https://github.com/box/box-python-sdk/commit/3510d3ac085767205854014ecef80fd078d71773))
18+
* Fix chunked upload ([#673](https://github.com/box/box-python-sdk/issues/673)) ([2605fd7](https://github.com/box/box-python-sdk/commit/2605fd782396ad6e42bd11c10f846e771634b7a0)), closes [#671](https://github.com/box/box-python-sdk/issues/671)
19+
320
## [3.0.1] (2022-01-26)
421

522
### Bug Fixes:

boxsdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.0.1'
1+
__version__ = '3.1.0'

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ def main():
8383
name='boxsdk',
8484
version=version,
8585
description='Official Box Python SDK',
86+
long_description_content_type="text/markdown",
8687
long_description=open(join(base_dir, 'README.md'), encoding='utf-8').read(), # pylint:disable=consider-using-with
8788
author='Box',
8889
author_email='[email protected]',

0 commit comments

Comments
 (0)