From 5050051ed93abd3486f269849af370e20c85d572 Mon Sep 17 00:00:00 2001 From: Michael Collado Date: Thu, 17 Jun 2021 11:04:59 -0700 Subject: [PATCH] Prepare for release 0.15.2 Signed-off-by: Michael Collado --- chart/Chart.yaml | 2 +- chart/values.yaml | 4 ++-- clients/java/README.md | 4 ++-- clients/python/marquez_client/__init__.py | 2 +- clients/python/setup.cfg | 2 +- clients/python/setup.py | 2 +- gradle.properties | 2 +- integrations/airflow/marquez_airflow/__init__.py | 2 +- integrations/airflow/setup.cfg | 2 +- integrations/airflow/setup.py | 4 ++-- integrations/common/marquez/__init__.py | 2 +- integrations/common/setup.cfg | 2 +- integrations/common/setup.py | 2 +- integrations/spark/README.md | 10 +++++----- spec/openapi.yml | 2 +- 15 files changed, 22 insertions(+), 22 deletions(-) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 5e105fc39e..9b79af3b81 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -25,4 +25,4 @@ name: marquez sources: - https://github.com/MarquezProject/marquez - https://marquezproject.github.io/marquez/ -version: 0.15.2-rc.3 +version: 0.15.2 diff --git a/chart/values.yaml b/chart/values.yaml index f3d24ed9f7..d9114c3577 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -16,7 +16,7 @@ marquez: image: registry: docker.io repository: marquezproject/marquez - tag: 0.15.2-rc.3 + tag: 0.15.2 pullPolicy: IfNotPresent ## Name of the existing secret containing credentials for the Marquez installation. ## When this is specified, it will take precedence over the values configured in the 'db' section. @@ -70,7 +70,7 @@ web: image: registry: docker.io repository: marquezproject/marquez-web - tag: 0.15.2-rc.3 + tag: 0.15.2 pullPolicy: IfNotPresent ## Marquez website will run on this port ## diff --git a/clients/java/README.md b/clients/java/README.md index d1bd1167c5..8e64d79010 100644 --- a/clients/java/README.md +++ b/clients/java/README.md @@ -10,14 +10,14 @@ Maven: io.github.marquezproject marquez-java - 0.15.2-rc.3 + 0.15.2 ``` or Gradle: ```groovy -implementation 'io.github.marquezproject:marquez-java:0.15.2-rc.3 +implementation 'io.github.marquezproject:marquez-java:0.15.2 ``` ## Usage diff --git a/clients/python/marquez_client/__init__.py b/clients/python/marquez_client/__init__.py index 7dee253fac..1b94faaa21 100644 --- a/clients/python/marquez_client/__init__.py +++ b/clients/python/marquez_client/__init__.py @@ -13,7 +13,7 @@ # -*- coding: utf-8 -*- __author__ = """Marquez Project""" -__version__ = "0.15.2rc3" +__version__ = "0.15.2" from marquez_client.client import MarquezClient # noqa: F401 from marquez_client.client_wo import MarquezWriteOnlyClient # noqa: F401 diff --git a/clients/python/setup.cfg b/clients/python/setup.cfg index 0573398271..8ee4ad063f 100644 --- a/clients/python/setup.cfg +++ b/clients/python/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.2rc3 +current_version = 0.15.2 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P.*) diff --git a/clients/python/setup.py b/clients/python/setup.py index 95397e6f58..fc61d23792 100644 --- a/clients/python/setup.py +++ b/clients/python/setup.py @@ -32,7 +32,7 @@ setup( name="marquez-python", - version="0.15.2rc3", + version="0.15.2", description="Marquez Python Client", long_description=readme, long_description_content_type="text/markdown", diff --git a/gradle.properties b/gradle.properties index ce880af8f6..788de7b3ad 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.internal.http.connectionTimeout=60000 org.gradle.internal.http.socketTimeout=60000 -version=0.15.2-rc.4 +version=0.15.2 diff --git a/integrations/airflow/marquez_airflow/__init__.py b/integrations/airflow/marquez_airflow/__init__.py index b773e1dad5..1f359d992b 100644 --- a/integrations/airflow/marquez_airflow/__init__.py +++ b/integrations/airflow/marquez_airflow/__init__.py @@ -13,7 +13,7 @@ # -*- coding: utf-8 -*- __author__ = """Marquez Project""" -__version__ = "0.15.2rc3" +__version__ = "0.15.2" __all__ = ["DAG"] from marquez_airflow.dag import DAG diff --git a/integrations/airflow/setup.cfg b/integrations/airflow/setup.cfg index 6813309e57..36d0f89435 100644 --- a/integrations/airflow/setup.cfg +++ b/integrations/airflow/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.2rc3 +current_version = 0.15.2 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P.*) diff --git a/integrations/airflow/setup.py b/integrations/airflow/setup.py index a6b46db486..cad858216f 100644 --- a/integrations/airflow/setup.py +++ b/integrations/airflow/setup.py @@ -23,7 +23,7 @@ "attrs>=19.3", "requests>=2.24.0", "sqlparse==0.4.1", - "marquez-integration-common==0.15.2rc3", + "marquez-integration-common==0.15.2", ] extras_require = { @@ -47,7 +47,7 @@ setup( name="marquez-airflow", - version="0.15.2rc3", + version="0.15.2", description="Marquez integration with Airflow", long_description=readme, long_description_content_type="text/markdown", diff --git a/integrations/common/marquez/__init__.py b/integrations/common/marquez/__init__.py index 3ed28182a7..f0575d4c2a 100644 --- a/integrations/common/marquez/__init__.py +++ b/integrations/common/marquez/__init__.py @@ -11,4 +11,4 @@ # limitations under the License. __author__ = """Marquez Project""" -__version__ = "0.15.2rc3" +__version__ = "0.15.2" diff --git a/integrations/common/setup.cfg b/integrations/common/setup.cfg index 77c4432ca9..20b4f74936 100644 --- a/integrations/common/setup.cfg +++ b/integrations/common/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.2rc3 +current_version = 0.15.2 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P.*) diff --git a/integrations/common/setup.py b/integrations/common/setup.py index 7e111b672a..507f467670 100644 --- a/integrations/common/setup.py +++ b/integrations/common/setup.py @@ -44,7 +44,7 @@ setup( name="marquez-integration-common", - version="0.15.2rc3", + version="0.15.2", description="Marquez common python library", long_description=readme, long_description_content_type="text/markdown", diff --git a/integrations/spark/README.md b/integrations/spark/README.md index 7e81db0385..7a36f6844f 100644 --- a/integrations/spark/README.md +++ b/integrations/spark/README.md @@ -10,14 +10,14 @@ Maven: io.github.marquezproject marquez-spark - 0.15.2-rc.3 + 0.15.2 ``` or Gradle: ```groovy -implementation 'io.github.marquezproject:marquez-spark:0.15.2-rc.3 +implementation 'io.github.marquezproject:marquez-spark:0.15.2 ``` ## Getting started @@ -52,7 +52,7 @@ from pyspark.sql import SparkSession spark = (SparkSession.builder.master('local') .appName('sample_spark') - .config('spark.jars.packages', 'io.github.marquezproject:marquez-spark:0.15.2-rc.3 + .config('spark.jars.packages', 'io.github.marquezproject:marquez-spark:0.15.2 .config('spark.extraListeners', 'marquez.spark.agent.SparkListener') .config('openlineage.url', 'http://marquez:5000/api/v1/namespaces/spark_integration/') .getOrCreate()) @@ -123,7 +123,7 @@ t1 = DataProcPySparkOperator( job_name=job_name, dataproc_pyspark_properties={ "spark.extraListeners": "marquez.spark.agent.SparkListener", - "spark.jars.packages": "io.github.marquezproject:marquez-spark:0.15.2-rc.3 + "spark.jars.packages": "io.github.marquezproject:marquez-spark:0.15.2 "openlineage.url": f"{marquez_url}/api/v1/namespaces/{marquez_namespace}/jobs/dump_orders_to_gcs/runs/{{{{task_run_id(run_id, task)}}}}?api_key={api_key}" }, dag=dag) @@ -156,7 +156,7 @@ t1 = DataprocClusterCreateOperator( init_actions_uris=['gs://dataproc-initialization-actions/cloud-sql-proxy/cloud-sql-proxy.sh'], properties={ "spark.extraListeners": "marquez.spark.agent.SparkListener", - "spark.jars.packages": "io.github.marquezproject:marquez-spark:0.15.2-rc.3 + "spark.jars.packages": "io.github.marquezproject:marquez-spark:0.15.2 "openlineage.url": "{marquez_url}/api/v1/namespaces/{marquez_namespace}/?api_key={api_key}" }, dag=dag) diff --git a/spec/openapi.yml b/spec/openapi.yml index 4c32aa9b76..4785507247 100644 --- a/spec/openapi.yml +++ b/spec/openapi.yml @@ -1,7 +1,7 @@ openapi: 3.0.2 info: title: Marquez - version: 0.15.2-rc.3 + version: 0.15.2 description: Marquez is an open source **metadata service** for the **collection**, **aggregation**, and **visualization** of a data ecosystem's metadata. license: