Skip to content

Commit 0511f0f

Browse files
author
cpdeethree
committed
Bump Airbyte version from 0.44.9 to 0.44.10
1 parent 84eafc2 commit 0511f0f

File tree

22 files changed

+32
-32
lines changed

22 files changed

+32
-32
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.44.9
2+
current_version = 0.44.10
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-[a-z]+)?

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
### SHARED ###
13-
VERSION=0.44.9
13+
VERSION=0.44.10
1414

1515
# When using the airbyte-db via default docker image
1616
CONFIG_ROOT=/data

airbyte-bootloader/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG JDK_IMAGE=airbyte/airbyte-base-java-image:2.0.3
22
FROM ${JDK_IMAGE}
33

4-
ARG VERSION=0.44.9
4+
ARG VERSION=0.44.10
55

66
ENV APPLICATION airbyte-bootloader
77
ENV VERSION ${VERSION}

airbyte-connector-atelier-server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ENV PIP=${PYENV_ROOT}/versions/${PYTHON_VERSION}/bin/pip
2020
COPY requirements.txt requirements.txt
2121
RUN ${PIP} install -r requirements.txt
2222

23-
ARG VERSION=0.44.9
23+
ARG VERSION=0.44.10
2424

2525
ENV APPLICATION airbyte-connector-atelier-server
2626
ENV VERSION ${VERSION}
@@ -33,5 +33,5 @@ ADD bin/${APPLICATION}-${VERSION}.tar /app
3333
# wait for upstream dependencies to become available before starting server
3434
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-${VERSION}/bin/${APPLICATION}"]
3535

36-
LABEL io.airbyte.version=0.44.9
36+
LABEL io.airbyte.version=0.44.10
3737
LABEL io.airbyte.name=airbyte/connector-atelier-server

airbyte-connector-builder-server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ ENTRYPOINT ["uvicorn", "connector_builder.entrypoint:app", "--host", "0.0.0.0",
1212

1313
EXPOSE 5003
1414

15-
LABEL io.airbyte.version=0.44.9
15+
LABEL io.airbyte.version=0.44.10
1616
LABEL io.airbyte.name=airbyte/connector-builder-server

airbyte-connector-builder-server/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
setup(
1818
name="connector-builder-server",
19-
version="0.44.9",
19+
version="0.44.10",
2020
description="",
2121
long_description=README,
2222
author="Airbyte",

airbyte-container-orchestrator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/s
1010
&& chmod +x kubectl && mv kubectl /usr/local/bin/
1111

1212
# Don't change this manually. Bump version expects to make moves based on this string
13-
ARG VERSION=0.44.9
13+
ARG VERSION=0.44.10
1414

1515
ENV APPLICATION airbyte-container-orchestrator
1616
ENV VERSION=${VERSION}

airbyte-cron/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG JDK_IMAGE=airbyte/airbyte-base-java-image:2.0.3
22
FROM ${JDK_IMAGE} AS cron
33

4-
ARG VERSION=0.44.9
4+
ARG VERSION=0.44.10
55

66
ENV APPLICATION airbyte-cron
77
ENV VERSION ${VERSION}

airbyte-metrics/reporter/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG JDK_IMAGE=airbyte/airbyte-base-java-image:2.0.3
22
FROM ${JDK_IMAGE} AS metrics-reporter
33

4-
ARG VERSION=0.44.9
4+
ARG VERSION=0.44.10
55

66
ENV APPLICATION airbyte-metrics-reporter
77
ENV VERSION ${VERSION}

airbyte-proxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
FROM nginx:latest
44

5-
ARG VERSION=0.44.9
5+
ARG VERSION=0.44.10
66

77
ENV APPLICATION airbyte-proxy
88
ENV VERSION ${VERSION}

0 commit comments

Comments
 (0)