From fd6ae7878cef0b52e1de227ce3d3409476256f85 Mon Sep 17 00:00:00 2001 From: Qingjun Tian Date: Thu, 29 Apr 2021 17:52:18 +0800 Subject: [PATCH] update to version 13.0.9.1 to fix issue of missing proxies --- HISTORY.rst | 4 ++++ MANIFEST.in | 2 +- bingads/manifest.py | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index ae04da1d..af8fadd8 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,10 @@ .. :changelog: Release History +13.0.9.1(2021-04-29) ++++++++++++++++++++++++++ +* Fix issue of missing proxies. + 13.0.9(2021-04-29) +++++++++++++++++++++++++ * Update Bing Ads API Version 13 service proxies to reflect recent interface changes. For details please see the Bing Ads API Release Notes: https://docs.microsoft.com/en-us/bingads/guides/release-notes. diff --git a/MANIFEST.in b/MANIFEST.in index 9aab48e6..78f3f825 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ include *.rst *.py *.txt include LICENSE -include bingads/v13/proxies/*xml +include bingads/v13/proxies/*/*.xml diff --git a/bingads/manifest.py b/bingads/manifest.py index d66d238a..a9d972ff 100644 --- a/bingads/manifest.py +++ b/bingads/manifest.py @@ -1,5 +1,5 @@ import sys -VERSION = '13.0.9' +VERSION = '13.0.9.1' BULK_FORMAT_VERSION_6 = '6.0' WORKING_NAME = 'BingAdsSDKPython' USER_AGENT = '{0} {1} {2}'.format(WORKING_NAME, VERSION, sys.version_info[0:3]) diff --git a/setup.py b/setup.py index 6675912a..673afc36 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ except ImportError: from distutils.core import setup -VERSION = '13.0.9' +VERSION = '13.0.9.1' with open('README.rst', 'r') as f: readme = f.read()