update version to 0.5.0 (#3566)

This commit is contained in:
hongye-sun 2020-04-22 14:00:50 -07:00 committed by GitHub
parent 241671f58f
commit 3dbbb16903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

View File

@ -1 +1 @@
0.4.0
0.5.0

View File

@ -12,7 +12,7 @@ metadata:
spec:
descriptor:
type: Kubeflow Pipelines
version: '0.4.0'
version: '0.5.0'
description: |-
Reusable end-to-end ML workflow
maintainers:

View File

@ -1,10 +1,10 @@
x-google-marketplace:
schemaVersion: v2
applicationApiVersion: v1beta1
publishedVersion: '0.4.0'
publishedVersion: '0.5.0'
publishedVersionMetadata:
releaseNote: >-
Based on 0.4.0 version.
Based on 0.5.0 version.
releaseTypes:
- Feature
recommended: false

View File

@ -1,6 +1,6 @@
appName=pipeline
appVersion=0.4.0
imageTag=0.4.0
appVersion=0.5.0
imageTag=0.5.0
imagePrefix=gcr.io/ml-pipeline
dbHost=mysql
dbPort=3306

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = '0.4.0'
__version__ = '0.5.0'
from . import components
from . import containers

View File

@ -30,7 +30,7 @@ REQUIRES = [
# kfp-server-api package is released. Update the lower version when there is
# a breaking change in kfp-server-api, or kfp sdk depends on new api changes
# in kfp-server-api.
'kfp-server-api>=0.2.5, <0.4.0',
'kfp-server-api>=0.2.5, <0.6.0',
'argo-models == 2.2.1a', #2.2.1a is equivalent to argo 2.2.1
'jsonschema >= 3.0.1',
'tabulate',