Skip to content

Commit 74bb88c

Browse files
authored
0.13.2-beta release version bump (open-metadata#9872)
* Apply beta release versions * Update beta release
1 parent c3ed377 commit 74bb88c

File tree

18 files changed

+21
-21
lines changed

18 files changed

+21
-21
lines changed

.github/workflows/docker-openmetadata-db.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: Check trigger type
3333
if: ${{ env.input == '' }}
34-
run: echo "input=0.13.1" >> $GITHUB_ENV
34+
run: echo "input=0.13.2-beta" >> $GITHUB_ENV
3535

3636
- name: Check out the Repo
3737
uses: actions/checkout@v3

.github/workflows/docker-openmetadata-ingestion-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: Check trigger type
3333
if: ${{ env.input == '' }}
34-
run: echo "input=0.13.1" >> $GITHUB_ENV
34+
run: echo "input=0.13.2-beta" >> $GITHUB_ENV
3535

3636
- name: Check out the Repo
3737
uses: actions/checkout@v3

.github/workflows/docker-openmetadata-ingestion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: Check trigger type
3333
if: ${{ env.input == '' }}
34-
run: echo "input=0.13.1" >> $GITHUB_ENV
34+
run: echo "input=0.13.2-beta" >> $GITHUB_ENV
3535

3636
- name: Check out the Repo
3737
uses: actions/checkout@v3

.github/workflows/docker-openmetadata-postgres.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: Check trigger type
3333
if: ${{ env.input == '' }}
34-
run: echo "input=0.13.1" >> $GITHUB_ENV
34+
run: echo "input=0.13.2-beta" >> $GITHUB_ENV
3535

3636
- name: Check out the Repo
3737
uses: actions/checkout@v3

.github/workflows/docker-openmetadata-server.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
- name: Check trigger type
6060
id: check_trigger
61-
run: echo "DOCKER_RELEASE_TAG=0.13.1" >> $GITHUB_OUTPUT
61+
run: echo "DOCKER_RELEASE_TAG=0.13.2-beta" >> $GITHUB_OUTPUT
6262

6363
- name: Download application from Artifiact
6464
uses: actions/download-artifact@v2
@@ -120,7 +120,7 @@ jobs:
120120
- name: Check trigger type
121121
id: check_trigger
122122
if: ${{ env.DOCKER_RELEASE_TAG == '' }}
123-
run: echo "DOCKER_RELEASE_TAG=0.13.1" >> $GITHUB_ENV
123+
run: echo "DOCKER_RELEASE_TAG=0.13.2-beta" >> $GITHUB_ENV
124124

125125
- name: Check out the Repo
126126
uses: actions/checkout@v3

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<parent>
1919
<artifactId>platform</artifactId>
2020
<groupId>org.open-metadata</groupId>
21-
<version>0.13.2-SNAPSHOT</version>
21+
<version>0.13.2-beta</version>
2222
</parent>
2323
<modelVersion>4.0.0</modelVersion>
2424
<properties>

docker/metadata/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apk update \
1919
&& rm -rf /var/cache/apk/*
2020

2121
COPY docker/metadata/openmetadata-start.sh docker/metadata/openmetadata.yaml ./
22-
RUN wget https://github.com/open-metadata/OpenMetadata/releases/download/0.12.0-release/openmetadata-0.12.0.tar.gz && \
22+
RUN wget https://github.com/open-metadata/OpenMetadata/releases/download/0.13.2-beta-release/openmetadata-0.13.2-beta.tar.gz && \
2323
tar zxvf openmetadata-*.tar.gz && \
2424
rm openmetadata-*.tar.gz
2525
RUN chmod 777 openmetadata-start.sh

ingestion/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ USER airflow
7272
# Argument to provide for Ingestion Dependencies to install. Defaults to all
7373
ARG INGESTION_DEPENDENCY="all"
7474
RUN pip install --upgrade pip
75-
RUN pip install "openmetadata-managed-apis==0.12.2.4" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.3.3/constraints-3.9.txt"
76-
RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]==0.12.2.4"
75+
RUN pip install "openmetadata-managed-apis==0.13.2.0.beta0" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.3.3/constraints-3.9.txt"
76+
RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]==0.13.2.0.beta0"
7777
# remove all airflow providers except for docker
7878
RUN pip freeze | grep "apache-airflow-providers" | grep -v "docker\|http" | xargs pip uninstall -y
7979
# Uninstalling psycopg2-binary and installing psycopg2 instead

ingestion/operators/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ COPY ingestion/operators/docker/main.py .
6363
RUN pip install --upgrade pip
6464

6565
ARG INGESTION_DEPENDENCY="all"
66-
RUN pip install --upgrade openmetadata-ingestion[airflow]
67-
RUN pip install --upgrade openmetadata-ingestion[${INGESTION_DEPENDENCY}]
66+
RUN pip install --upgrade "openmetadata-ingestion[airflow]==0.13.2.0.beta0"
67+
RUN pip install --upgrade "openmetadata-ingestion[${INGESTION_DEPENDENCY}]==0.13.2.0.beta0"
6868
# Uninstalling psycopg2-binary and installing psycopg2 instead
6969
# because the psycopg2-binary generates a architecture specific error
7070
# while authrenticating connection with the airflow, psycopg2 solves this error

ingestion/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def get_long_description():
224224
build_options = {"includes": ["_cffi_backend"]}
225225
setup(
226226
name="openmetadata-ingestion",
227-
version="0.13.2.0.dev0",
227+
version="0.13.2.0.beta0",
228228
url="https://open-metadata.org/",
229229
author="OpenMetadata Committers",
230230
license="Apache License 2.0",

openmetadata-airflow-apis/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def get_long_description():
6969
packages=find_packages(include=[f"{PLUGIN_NAME}.*", PLUGIN_NAME]),
7070
include_package_data=True,
7171
package_data={PLUGIN_NAME: get_package_data()},
72-
version="0.13.2.0.dev0",
72+
version="0.13.2.0.beta0",
7373
url="https://open-metadata.org/",
7474
author="OpenMetadata Committers",
7575
license="Apache License 2.0",

openmetadata-clients/openmetadata-java-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>openmetadata-clients</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>0.13.2-SNAPSHOT</version>
8+
<version>0.13.2-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

openmetadata-clients/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>platform</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>0.13.2-SNAPSHOT</version>
8+
<version>0.13.2-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

openmetadata-dist/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>platform</artifactId>
2222
<groupId>org.open-metadata</groupId>
23-
<version>0.13.2-SNAPSHOT</version>
23+
<version>0.13.2-beta</version>
2424
</parent>
2525

2626
<artifactId>openmetadata-dist</artifactId>

openmetadata-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>platform</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>0.13.2-SNAPSHOT</version>
8+
<version>0.13.2-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>openmetadata-service</artifactId>

openmetadata-spec/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>platform</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>0.13.2-SNAPSHOT</version>
8+
<version>0.13.2-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

openmetadata-ui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>platform</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>0.13.2-SNAPSHOT</version>
8+
<version>0.13.2-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
based on Open Metadata Standards/APIs, supporting connectors to a wide range of data services,
2727
OpenMetadata enables end-to-end metadata management, giving you the freedom to unlock the value of your data assets.
2828
</description>
29-
<version>0.13.2-SNAPSHOT</version>
29+
<version>0.13.2-beta</version>
3030
<url>https://github.com/open-metadata/OpenMetadata</url>
3131
<modules>
3232
<module>common</module>

0 commit comments

Comments
 (0)