diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c7f89ba9..c67867a24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +0.23.0 (2020-09-25) +------------------- + +- Fixed an issue when missing empty breadcrumb in tap properties file didn't raise an exception +- Add option to build docker images only with selected tap and target connectors + +**Tap Postgres** +- Bump `pipelinewise-tap-postgres` to 1.7.0 + - Option to enable SSL mode + - Fixed an issue when timestamps out of the ISO-8601 range caused some failures + - Fixed an issue when when postgres replication slot name not generated correctly and contained invalid characters + +**Target Postgres** +- Bump `pipelinewise-target-postgres` to 2.1.0 + - Option to enable SSL mode + 0.22.1 (2020-09-10) ------------------- diff --git a/docs/conf.py b/docs/conf.py index 7c3005c99..d094b1c5e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ def setup(app): project = 'PipelineWise' copyright = '2020, TransferWise Ltd.' author = 'TransferWise' -version = '0.22.1' +version = '0.23.0' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index a799bbec6..d3cfb6ec8 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ LONG_DESCRIPTION = f.read() setup(name='pipelinewise', - version='0.22.1', + version='0.23.0', description='PipelineWise', long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',