Skip to content

Commit 2a1ac10

Browse files
committed
chore(release): bumped version to 1.0.3-rc.1
1 parent 9c1b666 commit 2a1ac10

File tree

72 files changed

+103
-86
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+103
-86
lines changed

CHANGELOG.md

+15

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.1
1+
1.0.3-rc.1

backend/api/python_http_client/README.md

+2-2

backend/api/python_http_client/kfp_server_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
from __future__ import absolute_import
3030

31-
__version__ = "1.0.1"
31+
__version__ = "1.0.3-rc.1"
3232

3333
# import apis into sdk package
3434
from kfp_server_api.api.experiment_service_api import ExperimentServiceApi

backend/api/python_http_client/kfp_server_api/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = 'OpenAPI-Generator/1.0.1/python'
95+
self.user_agent = 'OpenAPI-Generator/1.0.3-rc.1/python'
9696
self.client_side_validation = configuration.client_side_validation
9797

9898
def __enter__(self):

backend/api/python_http_client/kfp_server_api/configuration.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,8 @@ def to_debug_report(self):
365365
return "Python SDK Debug Report:\n"\
366366
"OS: {env}\n"\
367367
"Python Version: {pyversion}\n"\
368-
"Version of the API: 1.0.1\n"\
369-
"SDK Package Version: 1.0.1".\
368+
"Version of the API: 1.0.3-rc.1\n"\
369+
"SDK Package Version: 1.0.3-rc.1".\
370370
format(env=sys.platform, pyversion=sys.version)
371371

372372
def get_host_settings(self):

backend/api/python_http_client/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from setuptools import setup, find_packages # noqa: H301
2828

2929
NAME = "kfp-server-api"
30-
VERSION = "1.0.1"
30+
VERSION = "1.0.3-rc.1"
3131
# To install the library, run the following
3232
#
3333
# python setup.py install

backend/api/swagger/kfp_api_single_file.swagger.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/gcp/bigquery/query/README.md

+1-1

components/gcp/bigquery/query/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ outputs:
5959
type: UI metadata
6060
implementation:
6161
container:
62-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.1
62+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.3-rc.1
6363
args: [
6464
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
6565
kfp_component.google.bigquery, query,

components/gcp/bigquery/query/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
"import kfp.components as comp\n",
105105
"\n",
106106
"bigquery_query_op = comp.load_component_from_url(\n",
107-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.1/components/gcp/bigquery/query/component.yaml')\n",
107+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.3-rc.1/components/gcp/bigquery/query/component.yaml')\n",
108108
"help(bigquery_query_op)"
109109
]
110110
},

components/gcp/container/component_sdk/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from setuptools import setup
1616

1717
PACKAGE_NAME = 'kfp-component'
18-
VERSION = '1.0.1'
18+
VERSION = '1.0.3-rc.1'
1919

2020
setup(
2121
name=PACKAGE_NAME,

components/gcp/dataflow/launch_python/README.md

+1-1

components/gcp/dataflow/launch_python/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ outputs:
5353
type: UI metadata
5454
implementation:
5555
container:
56-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.1
56+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.3-rc.1
5757
args: [
5858
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
5959
kfp_component.google.dataflow, launch_python,

components/gcp/dataflow/launch_python/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"import kfp.components as comp\n",
9393
"\n",
9494
"dataflow_python_op = comp.load_component_from_url(\n",
95-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.1/components/gcp/dataflow/launch_python/component.yaml')\n",
95+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.3-rc.1/components/gcp/dataflow/launch_python/component.yaml')\n",
9696
"help(dataflow_python_op)"
9797
]
9898
},

components/gcp/dataflow/launch_template/README.md

+1-1

components/gcp/dataflow/launch_template/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ outputs:
6363
type: UI metadata
6464
implementation:
6565
container:
66-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.1
66+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.3-rc.1
6767
args: [
6868
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
6969
kfp_component.google.dataflow, launch_template,

components/gcp/dataflow/launch_template/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"import kfp.components as comp\n",
8383
"\n",
8484
"dataflow_template_op = comp.load_component_from_url(\n",
85-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.1/components/gcp/dataflow/launch_template/component.yaml')\n",
85+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.3-rc.1/components/gcp/dataflow/launch_template/component.yaml')\n",
8686
"help(dataflow_template_op)"
8787
]
8888
},

components/gcp/dataproc/create_cluster/README.md

+1-1

components/gcp/dataproc/create_cluster/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ outputs:
7070
type: UI metadata
7171
implementation:
7272
container:
73-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.1
73+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.3-rc.1
7474
args: [
7575
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
7676
kfp_component.google.dataproc, create_cluster,

components/gcp/dataproc/create_cluster/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"import kfp.components as comp\n",
8989
"\n",
9090
"dataproc_create_cluster_op = comp.load_component_from_url(\n",
91-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.1/components/gcp/dataproc/create_cluster/component.yaml')\n",
91+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.3-rc.1/components/gcp/dataproc/create_cluster/component.yaml')\n",
9292
"help(dataproc_create_cluster_op)"
9393
]
9494
},

components/gcp/dataproc/delete_cluster/README.md

+1-1

components/gcp/dataproc/delete_cluster/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ inputs:
3636
type: Integer
3737
implementation:
3838
container:
39-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.1
39+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.3-rc.1
4040
args: [
4141
kfp_component.google.dataproc, delete_cluster,
4242
--project_id, {inputValue: project_id},

components/gcp/dataproc/delete_cluster/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"import kfp.components as comp\n",
7272
"\n",
7373
"dataproc_delete_cluster_op = comp.load_component_from_url(\n",
74-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.1/components/gcp/dataproc/delete_cluster/component.yaml')\n",
74+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.3-rc.1/components/gcp/dataproc/delete_cluster/component.yaml')\n",
7575
"help(dataproc_delete_cluster_op)"
7676
]
7777
},

components/gcp/dataproc/submit_hadoop_job/README.md

+1-1

components/gcp/dataproc/submit_hadoop_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ outputs:
8080
type: UI metadata
8181
implementation:
8282
container:
83-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.1
83+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.3-rc.1
8484
args: [
8585
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
8686
kfp_component.google.dataproc, submit_hadoop_job,

components/gcp/dataproc/submit_hadoop_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"import kfp.components as comp\n",
8787
"\n",
8888
"dataproc_submit_hadoop_job_op = comp.load_component_from_url(\n",
89-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.1/components/gcp/dataproc/submit_hadoop_job/component.yaml')\n",
89+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.3-rc.1/components/gcp/dataproc/submit_hadoop_job/component.yaml')\n",
9090
"help(dataproc_submit_hadoop_job_op)"
9191
]
9292
},

components/gcp/dataproc/submit_hive_job/README.md

+1-1

components/gcp/dataproc/submit_hive_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ outputs:
7575
type: UI metadata
7676
implementation:
7777
container:
78-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.1
78+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.3-rc.1
7979
args: [
8080
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
8181
kfp_component.google.dataproc, submit_hive_job,

components/gcp/dataproc/submit_hive_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"import kfp.components as comp\n",
7878
"\n",
7979
"dataproc_submit_hive_job_op = comp.load_component_from_url(\n",
80-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.1/components/gcp/dataproc/submit_hive_job/component.yaml')\n",
80+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.3-rc.1/components/gcp/dataproc/submit_hive_job/component.yaml')\n",
8181
"help(dataproc_submit_hive_job_op)"
8282
]
8383
},

components/gcp/dataproc/submit_pig_job/README.md

+1-1

components/gcp/dataproc/submit_pig_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ outputs:
7575
type: UI metadata
7676
implementation:
7777
container:
78-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.1
78+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.3-rc.1
7979
args: [
8080
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
8181
kfp_component.google.dataproc, submit_pig_job,

components/gcp/dataproc/submit_pig_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"import kfp.components as comp\n",
8181
"\n",
8282
"dataproc_submit_pig_job_op = comp.load_component_from_url(\n",
83-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.1/components/gcp/dataproc/submit_pig_job/component.yaml')\n",
83+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.3-rc.1/components/gcp/dataproc/submit_pig_job/component.yaml')\n",
8484
"help(dataproc_submit_pig_job_op)"
8585
]
8686
},

components/gcp/dataproc/submit_pyspark_job/README.md

+1-1

components/gcp/dataproc/submit_pyspark_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ outputs:
6969
type: UI metadata
7070
implementation:
7171
container:
72-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.1
72+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.3-rc.1
7373
args: [
7474
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
7575
kfp_component.google.dataproc, submit_pyspark_job,

components/gcp/dataproc/submit_pyspark_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"import kfp.components as comp\n",
8383
"\n",
8484
"dataproc_submit_pyspark_job_op = comp.load_component_from_url(\n",
85-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.1/components/gcp/dataproc/submit_pyspark_job/component.yaml')\n",
85+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.3-rc.1/components/gcp/dataproc/submit_pyspark_job/component.yaml')\n",
8686
"help(dataproc_submit_pyspark_job_op)"
8787
]
8888
},

components/gcp/dataproc/submit_spark_job/README.md

+1-1

components/gcp/dataproc/submit_spark_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ outputs:
7676
type: UI metadata
7777
implementation:
7878
container:
79-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.1
79+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.3-rc.1
8080
args: [
8181
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
8282
kfp_component.google.dataproc, submit_spark_job,

components/gcp/dataproc/submit_spark_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"import kfp.components as comp\n",
9494
"\n",
9595
"dataproc_submit_spark_job_op = comp.load_component_from_url(\n",
96-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.1/components/gcp/dataproc/submit_spark_job/component.yaml')\n",
96+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.3-rc.1/components/gcp/dataproc/submit_spark_job/component.yaml')\n",
9797
"help(dataproc_submit_spark_job_op)"
9898
]
9999
},

components/gcp/dataproc/submit_sparksql_job/README.md

+1-1

components/gcp/dataproc/submit_sparksql_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ outputs:
7575
type: UI metadata
7676
implementation:
7777
container:
78-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.1
78+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.3-rc.1
7979
args: [
8080
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
8181
kfp_component.google.dataproc, submit_sparksql_job,

components/gcp/dataproc/submit_sparksql_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"import kfp.components as comp\n",
7979
"\n",
8080
"dataproc_submit_sparksql_job_op = comp.load_component_from_url(\n",
81-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.1/components/gcp/dataproc/submit_sparksql_job/component.yaml')\n",
81+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/1.0.3-rc.1/components/gcp/dataproc/submit_sparksql_job/component.yaml')\n",
8282
"help(dataproc_submit_sparksql_job_op)"
8383
]
8484
},

components/gcp/ml_engine/batch_predict/README.md

+1-1

0 commit comments

Comments
 (0)