diff --git a/CHANGELOG.md b/CHANGELOG.md index 64904465a..68aa0848a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +0.64.0 (2024-07-19) +------------------- +- Update `sync_tables` and `import_config` commands + - new optional config setting for source tables size checking + - checking the size of source tables in `tap_mysql` and `tap_postgres` to `target_snowflake` and failing fast sync + if the size is not allowed + - added `--force` argument for `sync_tables` command to ignore size checking + 0.63.0 (2024-07-08) --------------------- - Bump `pipelinewise-tap-jira`from `2.0.1` to `2.2.0` diff --git a/setup.py b/setup.py index 768d58b7e..6a534453a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup(name='pipelinewise', python_requires='==3.8.*', - version='0.63.0', + version='0.64.0', description='PipelineWise', long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',