From ab5cd62d83050256b5735d0f8d3745c024e368db 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 | 3 ++- example/service-multi-stack/dev/kcl.mod | 4 ++-- example/service-multi-stack/prod/kcl.mod | 4 ++-- example/simple-service/prod/kcl.mod | 3 ++- example/wordpress/dev/kcl.mod | 4 ++-- 6 files changed, 12 insertions(+), 11 deletions(-) diff --git a/example/nginx/dev/kcl.mod b/example/nginx/dev/kcl.mod index 49aa0b63..3fcabc10 100644 --- a/example/nginx/dev/kcl.mod +++ b/example/nginx/dev/kcl.mod @@ -1,10 +1,9 @@ [package] -name = "public-service" -edition = "0.5.0" +name = "nginx" +edition = "0.1.0" version = "0.1.0" [dependencies] -# should update the tag! catalog = { git = "https://github.com/KusionStack/catalog.git", tag = "0.1.2" } [profile] diff --git a/example/sample-job/prod/kcl.mod b/example/sample-job/prod/kcl.mod index dbcf333b..5976b1df 100644 --- a/example/sample-job/prod/kcl.mod +++ b/example/sample-job/prod/kcl.mod @@ -4,6 +4,7 @@ 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..a561b3ec 100644 --- a/example/service-multi-stack/dev/kcl.mod +++ b/example/service-multi-stack/dev/kcl.mod @@ -1,6 +1,6 @@ [package] -name = "service-multi-stack" -edition = "0.5.0" +name = "service-multi-stack-dev" +edition = "0.1.0" 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..6bbcb224 100644 --- a/example/service-multi-stack/prod/kcl.mod +++ b/example/service-multi-stack/prod/kcl.mod @@ -1,6 +1,6 @@ [package] -name = "service-multi-stack" -edition = "0.5.0" +name = "service-multi-stack-prod" +edition = "0.1.0" version = "0.1.0" [dependencies] diff --git a/example/simple-service/prod/kcl.mod b/example/simple-service/prod/kcl.mod index cc4bc59b..2afb662a 100644 --- a/example/simple-service/prod/kcl.mod +++ b/example/simple-service/prod/kcl.mod @@ -4,7 +4,8 @@ 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..4124192c 100644 --- a/example/wordpress/dev/kcl.mod +++ b/example/wordpress/dev/kcl.mod @@ -1,10 +1,10 @@ [package] name = "wordpress" -edition = "0.5.0" +edition = "0.1.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"]