From e7f2fc3365decb329aff25315fdf11514e5689b9 Mon Sep 17 00:00:00 2001 From: brianjlai Date: Wed, 27 Mar 2024 20:50:10 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Bump=20patch=20version=20of=20Py?= =?UTF-8?q?thon=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/pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/airbyte-cdk/python/.bumpversion.cfg b/airbyte-cdk/python/.bumpversion.cfg index f572fd53382f..1b7f545a7659 100644 --- a/airbyte-cdk/python/.bumpversion.cfg +++ b/airbyte-cdk/python/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.77.1 +current_version = 0.77.2 commit = False [bumpversion:file:Dockerfile] diff --git a/airbyte-cdk/python/CHANGELOG.md b/airbyte-cdk/python/CHANGELOG.md index 47ee4735f10a..6dc5265d3618 100644 --- a/airbyte-cdk/python/CHANGELOG.md +++ b/airbyte-cdk/python/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.77.2 +Emit state recordCount as float instead of integer + ## 0.77.1 Fix empty , , extras packages diff --git a/airbyte-cdk/python/Dockerfile b/airbyte-cdk/python/Dockerfile index a17374bbd945..acaa34628e5c 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.77.1 +RUN pip install --prefix=/install airbyte-cdk==0.77.2 # 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.77.1 +LABEL io.airbyte.version=0.77.2 LABEL io.airbyte.name=airbyte/source-declarative-manifest diff --git a/airbyte-cdk/python/pyproject.toml b/airbyte-cdk/python/pyproject.toml index 5ed458939067..b70b825c6f54 100644 --- a/airbyte-cdk/python/pyproject.toml +++ b/airbyte-cdk/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-cdk" -version = "0.77.1" +version = "0.77.2" description = "A framework for writing Airbyte Connectors." authors = ["Airbyte "] license = "MIT"