Skip to content

Commit e37118f

Browse files
committed
Switched route prefix from /2-beta-2/ to /2/.
1 parent b71ef6d commit e37118f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '3.35'
62+
version = '3.36'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '3.35'
64+
release = '3.36'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

dropbox/dropbox.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
]
44

55
# TODO(kelkabany): We need to auto populate this as done in the v1 SDK.
6-
__version__ = '3.35'
6+
__version__ = '3.36'
77

88
import contextlib
99
import json
@@ -61,7 +61,7 @@ class Dropbox(DropboxBase):
6161
Use this to make requests to the Dropbox API.
6262
"""
6363

64-
API_VERSION = '2-beta-2'
64+
API_VERSION = '2'
6565

6666
DEFAULT_DOMAIN = 'dropbox.com'
6767

dropbox/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
else:
3232
url_encode = urllib.urlencode
3333

34-
SDK_VERSION = "3.35"
34+
SDK_VERSION = "3.36"
3535

3636
TRUSTED_CERT_FILE = pkg_resources.resource_filename(__name__, 'trusted-certs.crt')
3737

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
dist = setup(
2727
name='dropbox',
28-
version='3.35',
28+
version='3.36',
2929
description='Official Dropbox API Client',
3030
author='Dropbox',
3131
author_email='dev-platform@dropbox.com',

0 commit comments

Comments
 (0)