Skip to content

Commit

Permalink
release 4.0.0
Browse files Browse the repository at this point in the history
- Changed the API so that it works with BingAds v13.
- Added scope to the report requests so that they can query the Bingads server.
- Removed language from the requests.
- Changed version number to 4.0.0 and the required bingads library to 13.0.1.

**required changes**

If used together with mara_app, then add the following lines to `local_setup.py`:

```
patch(bingads_downloader.config.oauth2_customer_id)(lambda: 2435435)
patch(bingads_downloader.config.oauth2_account_id)(lambda: 435435435)
patch(bingads_downloader.config.output_file_version)(lambda: 'v4')
patch(bingads_downloader.config.oauth2_account_array)(lambda: ['43543543','345435'])
```
  • Loading branch information
martin-loetzsch committed Mar 2, 2020
1 parent 3a14606 commit 3ff0acb
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 4.0.0 (2020-03-02)

- Changed the API so that it works with BingAds v13.
- Added scope to the report requests so that they can query the Bingads server.
- Removed language from the requests.
- Changed version number to 4.0.0 and the required bingads library to 13.0.1.

**required changes**

If used together with mara_app, then add the following lines to `local_setup.py`:

```
patch(bingads_downloader.config.oauth2_customer_id)(lambda: 2435435)
patch(bingads_downloader.config.oauth2_account_id)(lambda: 435435435)
patch(bingads_downloader.config.output_file_version)(lambda: 'v4')
patch(bingads_downloader.config.oauth2_account_array)(lambda: ['43543543','345435'])
```

A refresh of oauth2 Token needs to be run before running the downloads and updated.

## 3.0.0 (2019-04-12)

- Change MARA_XXX variables to functions to delay importing of imports
Expand Down

0 comments on commit 3ff0acb

Please sign in to comment.