Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump requests from 2.22.0 to 2.31.0 #62

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.1.1
* Dependabot update [#62](https://github.com/singer-io/tap-linkedin-ads/pull/62)

## 2.1.0
* Bump to API version `202302`
* Move and update `FIELDS_UNACCEPTED_BY_API`
Expand Down Expand Up @@ -90,4 +93,4 @@
* Re-work sync.py child node to simplify and bulkify. Fix client.py permissions issue with check_access_token. Simplify transform.py, leverage singer-io datetime conversions for unix ms integers.

## 0.0.1
* Initial commit
* Initial commit
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
from setuptools import setup, find_packages

setup(name='tap-linkedin-ads',
version='2.1.0',
version='2.1.1',
description='Singer.io tap for extracting data from the LinkedIn Marketing Ads API API 2.0',
author='jeff.huth@bytecode.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_linkedin_ads'],
install_requires=[
'backoff==1.8.0',
'requests==2.22.0',
'requests==2.31.0',
'singer-python==5.12.1'
],
extras_require={
Expand All @@ -28,4 +28,4 @@
'tap_linkedin_ads': [
'schemas/*.json'
]
})
})