From 0294dd3751b7a5a31c39615049976bf6969e7a0b Mon Sep 17 00:00:00 2001 From: Ben Baron Date: Wed, 3 May 2023 14:51:59 -0500 Subject: [PATCH] Update version to 0.16.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 f5a747d..eda4723 100644 --- a/mparticle/api_client.py +++ b/mparticle/api_client.py @@ -91,7 +91,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.15.0' + self.user_agent = 'mParticle Python client/0.16.0' @property def user_agent(self): diff --git a/setup.py b/setup.py index 20c56a7..2e70e98 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages NAME = "mparticle" -VERSION = "0.15.0" +VERSION = "0.16.0" # To install the library, run the following