Skip to content

Commit

Permalink
prepare for 0.9.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
akash-jain-10 committed Apr 8, 2022
1 parent 530c3cd commit 4b9798e
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-openmetadata-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ jobs:
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name == 'release' }}
# Update tags before every release
tags: 'openmetadata/db:0.9.0,openmetadata/db:latest'
tags: 'openmetadata/db:0.9.1,openmetadata/db:latest'
file: ./docker/local-metadata/Dockerfile_mysql
2 changes: 1 addition & 1 deletion .github/workflows/docker-openmetadata-ingestion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ jobs:
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name == 'release' }}
# Update tags before every release
tags: 'openmetadata/ingestion:0.9.0,openmetadata/ingestion:latest'
tags: 'openmetadata/ingestion:0.9.1,openmetadata/ingestion:latest'
file: ./ingestion/Dockerfile
2 changes: 1 addition & 1 deletion .github/workflows/docker-openmetadata-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ jobs:
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name == 'release' }}
# Update tags before every release
tags: 'openmetadata/server:0.9.0,openmetadata/server:latest'
tags: 'openmetadata/server:0.9.1,openmetadata/server:latest'
file: ./docker/metadata/Dockerfile
2 changes: 1 addition & 1 deletion catalog-rest-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>catalog</artifactId>
<groupId>org.openmetadata</groupId>
<version>0.9.0</version>
<version>0.9.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>catalog</artifactId>
<groupId>org.openmetadata</groupId>
<version>0.9.0</version>
<version>0.9.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion docker/metadata/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0-release/openmetadata-0.9.0.tar.gz && \
RUN wget https://github.com/open-metadata/OpenMetadata/releases/download/0.9.1-release/openmetadata-0.9.1.tar.gz && \
tar zxvf openmetadata-*.tar.gz && \
rm openmetadata-*.tar.gz
RUN chmod 777 openmetadata-start.sh
Expand Down
6 changes: 3 additions & 3 deletions docker/metadata/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version: "3.9"
services:
mysql:
container_name: openmetadata_mysql
image: openmetadata/db:0.9.0
image: openmetadata/db:0.9.1
restart: always
environment:
MYSQL_ROOT_PASSWORD: password
Expand All @@ -40,7 +40,7 @@ services:
openmetadata-server:
container_name: openmetadata_server
restart: always
image: openmetadata/server:0.9.0
image: openmetadata/server:0.9.1
environment:
ELASTICSEARCH_HOST: elasticsearch
AIRFLOW_HOST: ingestion
Expand Down Expand Up @@ -72,7 +72,7 @@ services:

ingestion:
container_name: openmetadata_ingestion
image: openmetadata/ingestion:0.9.0
image: openmetadata/ingestion:0.9.1
depends_on:
- mysql
expose:
Expand Down
2 changes: 1 addition & 1 deletion ingestion-core/src/metadata/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

from incremental import Version

__version__ = Version("metadata", 0, 9, 0)
__version__ = Version("metadata", 0, 9, 1)
__all__ = ["__version__"]
4 changes: 2 additions & 2 deletions ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_long_description():


base_requirements = {
"openmetadata-ingestion-core==0.9.0",
"openmetadata-ingestion-core==0.9.1",
"commonregex",
"idna<3,>=2.5",
"click>=7.1.1",
Expand Down Expand Up @@ -155,7 +155,7 @@ def get_long_description():
build_options = {"includes": ["_cffi_backend"]}
setup(
name="openmetadata-ingestion",
version="0.9.1.dev4",
version="0.9.2",
url="https://open-metadata.org/",
author="OpenMetadata Committers",
license="Apache License 2.0",
Expand Down
2 changes: 1 addition & 1 deletion openmetadata-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>catalog</artifactId>
<groupId>org.openmetadata</groupId>
<version>0.9.0</version>
<version>0.9.1</version>
</parent>

<artifactId>openmetadata-dist</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openmetadata-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>catalog</artifactId>
<groupId>org.openmetadata</groupId>
<version>0.9.0</version>
<version>0.9.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<groupId>org.openmetadata</groupId>
<artifactId>catalog</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
<modules>
<module>common</module>
<module>catalog-rest-service</module>
Expand Down

0 comments on commit 4b9798e

Please sign in to comment.