1
0
mirror of synced 2025-12-25 02:09:19 -05:00

🤖 Bump patch version of Airbyte CDK

This commit is contained in:
girarda
2023-05-04 22:53:38 +00:00
committed by Octavia Squidington III
parent 0f0e8c8f96
commit 93d89a85ee
4 changed files with 7 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.36.2
current_version = 0.36.3
commit = False
[bumpversion:file:setup.py]

View File

@@ -1,5 +1,8 @@
# Changelog
## 0.36.3
pin the version of the requests library
## 0.36.2
Support parsing non UTC dates and Connector Builder set slice descriptor

View File

@@ -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.36.2
RUN pip install --prefix=/install airbyte-cdk==0.36.3
# 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.36.2
LABEL io.airbyte.version=0.36.3
LABEL io.airbyte.name=airbyte/source-declarative-manifest

View File

@@ -17,7 +17,7 @@ setup(
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.36.2",
version="0.36.3",
description="A framework for writing Airbyte Connectors.",
long_description=README,
long_description_content_type="text/markdown",