diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c4337161..c4b47a093 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +0.43.0 (2022-04-07) +------------------- + +*Breaking changes* +- Bump `tap-kafka` to `7.0.0` +- Drop not null constraints on Snowflake tables PK columns. + +*Added* +- Send failure alerts to slack channel defined in tap, `slack_alert_channel` +- Backup state file before tap starting + +*Fixes* +- Patch tap-mysql to `1.5.1` +- Don't use log files to check tap status before starting it. +- Change to e2e tests structure + 0.42.1 (2022-03-17) ------------------- - Bump `tap-kafka` to `6.0.0` diff --git a/setup.py b/setup.py index 0f51f07db..4f097647b 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup(name='pipelinewise', python_requires='>=3.7,<3.10', - version='0.42.1', + version='0.43.0', description='PipelineWise', long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown', @@ -15,7 +15,10 @@ url='https://github.com/transferwise/pipelinewise', classifiers=[ 'License :: OSI Approved :: Apache Software License', - 'Programming Language :: Python :: 3 :: Only' + 'Programming Language :: Python :: 3 :: Only', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], install_requires=[ 'argparse==1.4.0',