From 73439759cfb6e92c1a2554a0ff09bf570aa52693 Mon Sep 17 00:00:00 2001 From: healthjyk Date: Fri, 12 Jan 2024 10:57:14 +0800 Subject: [PATCH] feat: update edition and catalog tag --- example/nginx/dev/kcl.mod | 5 ++--- example/sample-job/prod/kcl.mod | 4 ++-- example/service-multi-stack/dev/kcl.mod | 3 +-- example/service-multi-stack/prod/kcl.mod | 3 +-- example/simple-service/prod/kcl.mod | 4 ++-- example/wordpress/dev/kcl.mod | 3 +-- 6 files changed, 9 insertions(+), 13 deletions(-) diff --git a/example/nginx/dev/kcl.mod b/example/nginx/dev/kcl.mod index 49aa0b63..e0f593b4 100644 --- a/example/nginx/dev/kcl.mod +++ b/example/nginx/dev/kcl.mod @@ -1,11 +1,10 @@ [package] -name = "public-service" -edition = "0.5.0" +name = "nginx" version = "0.1.0" [dependencies] -# should update the tag! catalog = { git = "https://github.com/KusionStack/catalog.git", tag = "0.1.2" } [profile] entries = ["main.k"] + diff --git a/example/sample-job/prod/kcl.mod b/example/sample-job/prod/kcl.mod index dbcf333b..63079835 100644 --- a/example/sample-job/prod/kcl.mod +++ b/example/sample-job/prod/kcl.mod @@ -1,9 +1,9 @@ [package] name = "sample-job" -edition = "0.1.0" version = "0.1.0" [dependencies] -catalog = { git = "https://github.com/KusionStack/catalog.git", tag = "0.1.1" } +catalog = { git = "https://github.com/KusionStack/catalog.git", tag = "0.1.2" } + [profile] entries = ["main.k"] diff --git a/example/service-multi-stack/dev/kcl.mod b/example/service-multi-stack/dev/kcl.mod index 9420f0bb..ff3898d9 100644 --- a/example/service-multi-stack/dev/kcl.mod +++ b/example/service-multi-stack/dev/kcl.mod @@ -1,6 +1,5 @@ [package] -name = "service-multi-stack" -edition = "0.5.0" +name = "service-multi-stack-dev" version = "0.1.0" [dependencies] diff --git a/example/service-multi-stack/prod/kcl.mod b/example/service-multi-stack/prod/kcl.mod index 8a748ab9..e35ca699 100644 --- a/example/service-multi-stack/prod/kcl.mod +++ b/example/service-multi-stack/prod/kcl.mod @@ -1,6 +1,5 @@ [package] -name = "service-multi-stack" -edition = "0.5.0" +name = "service-multi-stack-prod" version = "0.1.0" [dependencies] diff --git a/example/simple-service/prod/kcl.mod b/example/simple-service/prod/kcl.mod index cc4bc59b..f4a0793a 100644 --- a/example/simple-service/prod/kcl.mod +++ b/example/simple-service/prod/kcl.mod @@ -1,10 +1,10 @@ [package] name = "simple-service" -edition = "0.1.0" version = "0.1.0" [dependencies] -catalog = { git = "https://github.com/KusionStack/catalog.git", tag = "0.1.1" } +catalog = { git = "https://github.com/KusionStack/catalog.git", tag = "0.1.2" } + [profile] entries = ["main.k"] diff --git a/example/wordpress/dev/kcl.mod b/example/wordpress/dev/kcl.mod index 97632989..ad573640 100644 --- a/example/wordpress/dev/kcl.mod +++ b/example/wordpress/dev/kcl.mod @@ -1,10 +1,9 @@ [package] name = "wordpress" -edition = "0.5.0" version = "0.1.0" [dependencies] -catalog = { git = "https://github.com/KusionStack/catalog.git", tag = "0.1.0" } +catalog = { git = "https://github.com/KusionStack/catalog.git", tag = "0.1.2" } [profile] entries = ["main.k","platform.k"]