From 5d16cad2132e78a4099c69d567c3c29239be60bb Mon Sep 17 00:00:00 2001 From: Juan Pimentel Date: Fri, 20 Jan 2023 12:07:55 -0500 Subject: [PATCH] Added Custom User Agent --- route4me/api.py | 2 +- route4me/version.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/route4me/api.py b/route4me/api.py index 57b060c..2ca065f 100644 --- a/route4me/api.py +++ b/route4me/api.py @@ -23,7 +23,7 @@ HEADERS = { - 'User-Agent': 'python-sdk', + 'User-Agent': 'Route4Me Python SDK', 'Accept-Encoding': 'identity, deflate, compress, gzip', 'Accept': '*/*', } diff --git a/route4me/version.py b/route4me/version.py index b53c717..cfb805d 100644 --- a/route4me/version.py +++ b/route4me/version.py @@ -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 = 'juan@route4me.com' TITLE = 'route4me'