Bump main branch to version 1.0.0 (#10040)

* Bump to version 0.13.2

* Bump mvn projects to 1.0.0-SNAPSHOT

* Bump python projects to 1.0.0.dev0

---------

Co-authored-by: Pere Miquel Brull <peremiquelbrull@gmail.com>
This commit is contained in:
Nahuel 2023-02-02 12:56:14 +01:00 committed by GitHub
parent 72d6bfca1d
commit b9a3c06104
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
20 changed files with 27 additions and 27 deletions

View File

@ -31,7 +31,7 @@ jobs:
steps:
- name: Check trigger type
if: ${{ env.input == '' }}
run: echo "input=0.13.1" >> $GITHUB_ENV
run: echo "input=0.13.2" >> $GITHUB_ENV
- name: Check out the Repo
uses: actions/checkout@v3

View File

@ -31,7 +31,7 @@ jobs:
steps:
- name: Check trigger type
if: ${{ env.input == '' }}
run: echo "input=0.13.1" >> $GITHUB_ENV
run: echo "input=0.13.2" >> $GITHUB_ENV
- name: Check out the Repo
uses: actions/checkout@v3

View File

@ -31,7 +31,7 @@ jobs:
steps:
- name: Check trigger type
if: ${{ env.input == '' }}
run: echo "input=0.13.1" >> $GITHUB_ENV
run: echo "input=0.13.2" >> $GITHUB_ENV
- name: Check out the Repo
uses: actions/checkout@v3

View File

@ -31,7 +31,7 @@ jobs:
steps:
- name: Check trigger type
if: ${{ env.input == '' }}
run: echo "input=0.13.1" >> $GITHUB_ENV
run: echo "input=0.13.2" >> $GITHUB_ENV
- name: Check out the Repo
uses: actions/checkout@v3

View File

@ -58,7 +58,7 @@ jobs:
steps:
- name: Check trigger type
id: check_trigger
run: echo "DOCKER_RELEASE_TAG=0.13.1" >> $GITHUB_OUTPUT
run: echo "DOCKER_RELEASE_TAG=0.13.2" >> $GITHUB_OUTPUT
- name: Download application from Artifiact
uses: actions/download-artifact@v2
@ -120,7 +120,7 @@ jobs:
- name: Check trigger type
id: check_trigger
if: ${{ env.DOCKER_RELEASE_TAG == '' }}
run: echo "DOCKER_RELEASE_TAG=0.13.1" >> $GITHUB_ENV
run: echo "DOCKER_RELEASE_TAG=0.13.2" >> $GITHUB_ENV
- name: Check out the Repo
uses: actions/checkout@v3

View File

@ -18,7 +18,7 @@
<parent>
<artifactId>platform</artifactId>
<groupId>org.open-metadata</groupId>
<version>0.13.2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<properties>

View File

@ -19,7 +19,7 @@ RUN apk update \
&& rm -rf /var/cache/apk/*
COPY docker/metadata/openmetadata-start.sh docker/metadata/openmetadata.yaml ./
RUN wget https://github.com/open-metadata/OpenMetadata/releases/download/0.12.0-release/openmetadata-0.12.0.tar.gz && \
RUN wget https://github.com/open-metadata/OpenMetadata/releases/download/0.13.2-release/openmetadata-0.13.2.tar.gz && \
tar zxvf openmetadata-*.tar.gz && \
rm openmetadata-*.tar.gz
RUN chmod 777 openmetadata-start.sh

View File

@ -18,7 +18,7 @@ volumes:
services:
postgresql:
container_name: openmetadata_postgresql
image: docker.getcollate.io/openmetadata/postgresql:0.13.1
image: docker.getcollate.io/openmetadata/postgresql:0.13.2
restart: always
environment:
POSTGRES_USER: postgres
@ -55,7 +55,7 @@ services:
openmetadata-server:
container_name: openmetadata_server
restart: always
image: docker.getcollate.io/openmetadata/server:0.13.1
image: docker.getcollate.io/openmetadata/server:0.13.2
environment:
# OpenMetadata Server Authentication Configuration
AUTHORIZER_CLASS_NAME: ${AUTHORIZER_CLASS_NAME:-org.openmetadata.service.security.DefaultAuthorizer}
@ -121,7 +121,7 @@ services:
ingestion:
container_name: openmetadata_ingestion
image: docker.getcollate.io/openmetadata/ingestion:0.13.1
image: docker.getcollate.io/openmetadata/ingestion:0.13.2
depends_on:
elasticsearch:
condition: service_started

View File

@ -18,7 +18,7 @@ volumes:
services:
mysql:
container_name: openmetadata_mysql
image: docker.getcollate.io/openmetadata/db:0.13.1
image: docker.getcollate.io/openmetadata/db:0.13.2
restart: always
environment:
MYSQL_ROOT_PASSWORD: password
@ -53,7 +53,7 @@ services:
openmetadata-server:
container_name: openmetadata_server
restart: always
image: docker.getcollate.io/openmetadata/server:0.13.1
image: docker.getcollate.io/openmetadata/server:0.13.2
environment:
# OpenMetadata Server Authentication Configuration
AUTHORIZER_CLASS_NAME: ${AUTHORIZER_CLASS_NAME:-org.openmetadata.service.security.DefaultAuthorizer}
@ -119,7 +119,7 @@ services:
ingestion:
container_name: openmetadata_ingestion
image: docker.getcollate.io/openmetadata/ingestion:0.13.1
image: docker.getcollate.io/openmetadata/ingestion:0.13.2
depends_on:
elasticsearch:
condition: service_started

View File

@ -72,8 +72,8 @@ USER airflow
# Argument to provide for Ingestion Dependencies to install. Defaults to all
ARG INGESTION_DEPENDENCY="all"
RUN pip install --upgrade pip
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"
RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]==0.12.2.4"
RUN pip install "openmetadata-managed-apis==0.13.2.1" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.3.3/constraints-3.9.txt"
RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]==0.13.2.1"
# remove all airflow providers except for docker
RUN pip freeze | grep "apache-airflow-providers" | grep -v "docker\|http" | xargs pip uninstall -y
# Uninstalling psycopg2-binary and installing psycopg2 instead

View File

@ -63,8 +63,8 @@ COPY ingestion/operators/docker/main.py .
RUN pip install --upgrade pip
ARG INGESTION_DEPENDENCY="all"
RUN pip install --upgrade openmetadata-ingestion[airflow]
RUN pip install --upgrade openmetadata-ingestion[${INGESTION_DEPENDENCY}]
RUN pip install --upgrade "openmetadata-ingestion[airflow]==0.13.2.1"
RUN pip install --upgrade "openmetadata-ingestion[${INGESTION_DEPENDENCY}]==0.13.2.1"
# Uninstalling psycopg2-binary and installing psycopg2 instead
# because the psycopg2-binary generates a architecture specific error
# while authrenticating connection with the airflow, psycopg2 solves this error

View File

@ -227,7 +227,7 @@ test = {
build_options = {"includes": ["_cffi_backend"]}
setup(
name="openmetadata-ingestion",
version="0.13.2.0.dev0",
version="1.0.0.0.dev0",
url="https://open-metadata.org/",
author="OpenMetadata Committers",
license="Apache License 2.0",

View File

@ -69,7 +69,7 @@ setup(
packages=find_packages(include=[f"{PLUGIN_NAME}.*", PLUGIN_NAME]),
include_package_data=True,
package_data={PLUGIN_NAME: get_package_data()},
version="0.13.2.0.dev0",
version="1.0.0.0.dev0",
url="https://open-metadata.org/",
author="OpenMetadata Committers",
license="Apache License 2.0",

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>openmetadata-clients</artifactId>
<groupId>org.open-metadata</groupId>
<version>0.13.2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>platform</artifactId>
<groupId>org.open-metadata</groupId>
<version>0.13.2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -20,7 +20,7 @@
<parent>
<artifactId>platform</artifactId>
<groupId>org.open-metadata</groupId>
<version>0.13.2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>openmetadata-dist</artifactId>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>platform</artifactId>
<groupId>org.open-metadata</groupId>
<version>0.13.2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openmetadata-service</artifactId>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>platform</artifactId>
<groupId>org.open-metadata</groupId>
<version>0.13.2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>platform</artifactId>
<groupId>org.open-metadata</groupId>
<version>0.13.2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -26,7 +26,7 @@
based on Open Metadata Standards/APIs, supporting connectors to a wide range of data services,
OpenMetadata enables end-to-end metadata management, giving you the freedom to unlock the value of your data assets.
</description>
<version>0.13.2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<url>https://github.com/open-metadata/OpenMetadata</url>
<modules>
<module>openmetadata-spec</module>