From 327d3c9ae8e14b28bf2bdf7528b22f86f510d629 Mon Sep 17 00:00:00 2001 From: maxi297 Date: Mon, 18 Sep 2023 12:59:00 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Bump=20patch=20version=20of=20Ai?= =?UTF-8?q?rbyte=20CDK?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-cdk/python/.bumpversion.cfg | 2 +- airbyte-cdk/python/CHANGELOG.md | 3 +++ airbyte-cdk/python/Dockerfile | 4 ++-- airbyte-cdk/python/setup.py | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/airbyte-cdk/python/.bumpversion.cfg b/airbyte-cdk/python/.bumpversion.cfg index 4b110b03a9fd..52157ff0ea28 100644 --- a/airbyte-cdk/python/.bumpversion.cfg +++ b/airbyte-cdk/python/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.51.16 +current_version = 0.51.17 commit = False [bumpversion:file:setup.py] diff --git a/airbyte-cdk/python/CHANGELOG.md b/airbyte-cdk/python/CHANGELOG.md index ffa2cf384d60..569072031822 100644 --- a/airbyte-cdk/python/CHANGELOG.md +++ b/airbyte-cdk/python/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.51.17 +[ISSUE #30353] File-Based CDK: remove file_type from stream config + ## 0.51.16 Connector Builder: fix datetime format inference for str parsable as int but not isdecimal diff --git a/airbyte-cdk/python/Dockerfile b/airbyte-cdk/python/Dockerfile index 912ee7ce323c..8cafc41c635f 100644 --- a/airbyte-cdk/python/Dockerfile +++ b/airbyte-cdk/python/Dockerfile @@ -10,7 +10,7 @@ RUN apk --no-cache upgrade \ && apk --no-cache add tzdata build-base # install airbyte-cdk -RUN pip install --prefix=/install airbyte-cdk==0.51.16 +RUN pip install --prefix=/install airbyte-cdk==0.51.17 # build a clean environment FROM base @@ -32,5 +32,5 @@ ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] # needs to be the same as CDK -LABEL io.airbyte.version=0.51.16 +LABEL io.airbyte.version=0.51.17 LABEL io.airbyte.name=airbyte/source-declarative-manifest diff --git a/airbyte-cdk/python/setup.py b/airbyte-cdk/python/setup.py index 393c7151e7be..192d0ee13f3a 100644 --- a/airbyte-cdk/python/setup.py +++ b/airbyte-cdk/python/setup.py @@ -26,7 +26,7 @@ name="airbyte-cdk", # The version of the airbyte-cdk package is used at runtime to validate manifests. That validation must be # updated if our semver format changes such as using release candidate versions. - version="0.51.16", + version="0.51.17", description="A framework for writing Airbyte Connectors.", long_description=README, long_description_content_type="text/markdown",