From d1ff3c08009687e4d2b32e4136ab872ebffe1a82 Mon Sep 17 00:00:00 2001 From: prijendev Date: Tue, 21 Jan 2025 17:21:55 +0530 Subject: [PATCH] Fix dependabot issue --- CHANGELOG.md | 3 +++ setup.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb8c742..9657e94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 4.2.2 + * Fix dependabot issue [#118](https://github.com/singer-io/tap-mambu/pull/118) + ## 4.2.1 * Fix the bookmarking for multi-threaded streams [#117](https://github.com/singer-io/tap-mambu/pull/117) diff --git a/setup.py b/setup.py index 6f478a9..d51ae6b 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup(name='tap-mambu', - version='4.2.1', + version='4.2.2', description='Singer.io tap for extracting data from the Mambu 2.0 API', author='jeff.huth@bytecode.io', classifiers=['Programming Language :: Python :: 3 :: Only'], @@ -11,7 +11,7 @@ python_requires='>=3.9', install_requires=[ 'backoff==1.8.0', - 'requests==2.31.0', + 'requests==2.32.3', 'singer-python==5.12.2', 'pytz==2022.1' ],