Skip to content

Commit

Permalink
Added Custom User Agent
Browse files Browse the repository at this point in the history
  • Loading branch information
r4m-juan committed Jan 20, 2023
1 parent 450a428 commit 5d16cad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion route4me/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


HEADERS = {
'User-Agent': 'python-sdk',
'User-Agent': 'Route4Me Python SDK',
'Accept-Encoding': 'identity, deflate, compress, gzip',
'Accept': '*/*',
}
Expand Down
4 changes: 2 additions & 2 deletions route4me/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
# VERSION.py - MAINTAINER's. Don't edit, if you don't know what are you doing
# ==============================================================================

VERSION = (0, 1, 4, 1)
VERSION = (0, 1, 4, 3)
RELEASE_SUFFIX = ''

VERSION_STRING = '.'.join([str(x) for x in VERSION])
RELEASE_STRING = "v{}{}".format(VERSION_STRING, RELEASE_SUFFIX)

PROJECT = 'Route4Me Python SDK'
COPYRIGHT = '2016-2021 © Route4Me Python Team'
COPYRIGHT = '2016-2023 © Route4Me Python Team'
AUTHOR = 'Route4Me Python Team (SDK)'
AUTHOR_EMAIL = '[email protected]'
TITLE = 'route4me'
Expand Down

0 comments on commit 5d16cad

Please sign in to comment.