From 45b1d8fa612976694d41e03c445db0914bdc6820 Mon Sep 17 00:00:00 2001 From: Sam Dozor Date: Wed, 7 Dec 2022 13:43:35 -0500 Subject: [PATCH] Update version to 0.14.0 --- mparticle/api_client.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mparticle/api_client.py b/mparticle/api_client.py index b606ec2..7ce6d08 100644 --- a/mparticle/api_client.py +++ b/mparticle/api_client.py @@ -89,7 +89,7 @@ def __init__(self, host=None, header_name=None, header_value=None, cookie=None, self.host = host self.cookie = cookie # Set default User-Agent. - self.user_agent = 'mParticle Python client/0.13.0' + self.user_agent = 'mParticle Python client/0.14.0' @property def user_agent(self): diff --git a/setup.py b/setup.py index b5e3d88..7946614 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages NAME = "mparticle" -VERSION = "0.13.0" +VERSION = "0.14.0" # To install the library, run the following