From d5a3230fa07013a940c7f9ab031a074d5f8aa3b2 Mon Sep 17 00:00:00 2001 From: Paul Jolly Date: Thu, 19 Dec 2024 17:00:21 +0000 Subject: [PATCH] site: upgrade to v0.11.1 of CUE Simply bump the default version in site.cue then run _scripts/regenPostInfraChange.bash. Preprocessor-No-Write-Cache: true Signed-off-by: Paul Jolly Change-Id: Ic8fcb38b746d019f1cc427262904d67216114790 --- .../docs/concept/how-cue-works-with-go/index.md | 12 ++++++------ .../concept/working-with-incomplete-cue/index.md | 4 ++-- .../howto/embed-files-in-cue-evaluation/index.md | 2 +- .../en/docs/howto/handle-errors-go-api/index.md | 4 ++-- .../en/docs/howto/place-data-go-api/index.md | 4 ++-- .../use-the-built-in-function-matchif/index.md | 2 +- .../use-the-built-in-function-matchn/index.md | 2 +- .../en/docs/howto/validate-go-cuego/index.md | 4 ++-- .../howto/validate-json-using-go-api/index.md | 4 ++-- .../howto/walk-schemas-using-go-api/index.md | 4 ++-- .../en/docs/introduction/installation/index.md | 2 +- .../converting-json-schema-to-cue/index.md | 2 +- .../en/docs/tutorial/loading-cue-go-api/index.md | 6 +++--- .../index.md | 4 ++-- .../tutorial/using-modules-with-go-api/index.md | 6 +++--- .../index.md | 6 +++--- .../working-with-the-central-registry/index.md | 2 +- internal/cmd/preprocessor/cmd/_docker/Dockerfile | 16 ++++++++-------- .../cmd/preprocessor/cmd/gen_dockerimagetag.go | 2 +- .../cmd/testdata/execute_multistagescript.txtar | 16 ++++++++-------- playground/go.mod | 2 +- playground/go.sum | 4 ++-- .../src/config/gen_cuelang_org_go_version.ts | 2 +- site.cue | 2 +- 24 files changed, 57 insertions(+), 57 deletions(-) diff --git a/hugo/content/en/docs/concept/how-cue-works-with-go/index.md b/hugo/content/en/docs/concept/how-cue-works-with-go/index.md index 99ff811e0..822357488 100644 --- a/hugo/content/en/docs/concept/how-cue-works-with-go/index.md +++ b/hugo/content/en/docs/concept/how-cue-works-with-go/index.md @@ -156,8 +156,8 @@ func main() { Before running, we add a dependency on the `cuelang.org/go` module and tidy: -```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjAKZ28gbW9kIHRpZHk=" } -$ go get cuelang.org/go@v0.11.0 +```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjEKZ28gbW9kIHRpZHk=" } +$ go get cuelang.org/go@v0.11.1 ... $ go mod tidy ... @@ -236,8 +236,8 @@ age: 99 We finish by adding a dependency on the `cuelang.org/go` module, tidying, and running the program: -```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjAKZ28gbW9kIHRpZHkKZ28gcnVuIC4=" } -$ go get cuelang.org/go@v0.11.0 +```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjEKZ28gbW9kIHRpZHkKZ28gcnVuIC4=" } +$ go get cuelang.org/go@v0.11.1 ... $ go mod tidy ... @@ -310,8 +310,8 @@ func main() { This time we see that CUE correctly caught a problem in our data: -```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjAKZ28gbW9kIHRpZHkKZ28gcnVuIC4=" } -$ go get cuelang.org/go@v0.11.0 +```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjEKZ28gbW9kIHRpZHkKZ28gcnVuIC4=" } +$ go get cuelang.org/go@v0.11.1 ... $ go mod tidy ... diff --git a/hugo/content/en/docs/concept/working-with-incomplete-cue/index.md b/hugo/content/en/docs/concept/working-with-incomplete-cue/index.md index 447e8e11f..b4ced7f55 100644 --- a/hugo/content/en/docs/concept/working-with-incomplete-cue/index.md +++ b/hugo/content/en/docs/concept/working-with-incomplete-cue/index.md @@ -155,8 +155,8 @@ func main() { We fetch the latest version of CUE, and tidy our Go module: -```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjAKZ28gbW9kIHRpZHk=" } -$ go get cuelang.org/go@v0.11.0 +```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjEKZ28gbW9kIHRpZHk=" } +$ go get cuelang.org/go@v0.11.1 ... $ go mod tidy ... diff --git a/hugo/content/en/docs/howto/embed-files-in-cue-evaluation/index.md b/hugo/content/en/docs/howto/embed-files-in-cue-evaluation/index.md index a361b48bb..95125b32c 100644 --- a/hugo/content/en/docs/howto/embed-files-in-cue-evaluation/index.md +++ b/hugo/content/en/docs/howto/embed-files-in-cue-evaluation/index.md @@ -27,7 +27,7 @@ This guide demonstrates the following version: ```text { title="TERMINAL" type="terminal" codeToCopy="Y3VlIHZlcnNpb24=" } $ cue version -cue version v0.11.0 +cue version v0.11.1 ... ``` diff --git a/hugo/content/en/docs/howto/handle-errors-go-api/index.md b/hugo/content/en/docs/howto/handle-errors-go-api/index.md index 6d31ab89d..e2e01af06 100644 --- a/hugo/content/en/docs/howto/handle-errors-go-api/index.md +++ b/hugo/content/en/docs/howto/handle-errors-go-api/index.md @@ -122,8 +122,8 @@ func main() { {{< step stepNumber="6" >}} Add a dependency on `cuelang.org/go` and ensure the Go module is tidy: -```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjAKZ28gbW9kIHRpZHk=" } -$ go get cuelang.org/go@v0.11.0 +```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjEKZ28gbW9kIHRpZHk=" } +$ go get cuelang.org/go@v0.11.1 ... $ go mod tidy ... diff --git a/hugo/content/en/docs/howto/place-data-go-api/index.md b/hugo/content/en/docs/howto/place-data-go-api/index.md index 9354a4290..93841272d 100644 --- a/hugo/content/en/docs/howto/place-data-go-api/index.md +++ b/hugo/content/en/docs/howto/place-data-go-api/index.md @@ -114,8 +114,8 @@ func main() { {{< step stepNumber="5" >}} Add a dependency on `cuelang.org/go` and ensure the Go module is tidy: -```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjAKZ28gbW9kIHRpZHk=" } -$ go get cuelang.org/go@v0.11.0 +```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjEKZ28gbW9kIHRpZHk=" } +$ go get cuelang.org/go@v0.11.1 ... $ go mod tidy ... diff --git a/hugo/content/en/docs/howto/use-the-built-in-function-matchif/index.md b/hugo/content/en/docs/howto/use-the-built-in-function-matchif/index.md index ebb4cbb45..2b70d1821 100644 --- a/hugo/content/en/docs/howto/use-the-built-in-function-matchif/index.md +++ b/hugo/content/en/docs/howto/use-the-built-in-function-matchif/index.md @@ -13,7 +13,7 @@ version of the `cue` command: ```text { title="TERMINAL" type="terminal" codeToCopy="Y3VlIHZlcnNpb24=" } $ cue version -cue version v0.11.0 +cue version v0.11.1 ... ``` diff --git a/hugo/content/en/docs/howto/use-the-built-in-function-matchn/index.md b/hugo/content/en/docs/howto/use-the-built-in-function-matchn/index.md index 081550781..412c05172 100644 --- a/hugo/content/en/docs/howto/use-the-built-in-function-matchn/index.md +++ b/hugo/content/en/docs/howto/use-the-built-in-function-matchn/index.md @@ -20,7 +20,7 @@ version of the `cue` command: ```text { title="TERMINAL" type="terminal" codeToCopy="Y3VlIHZlcnNpb24=" } $ cue version -cue version v0.11.0 +cue version v0.11.1 ... ``` diff --git a/hugo/content/en/docs/howto/validate-go-cuego/index.md b/hugo/content/en/docs/howto/validate-go-cuego/index.md index 20c2f2480..f964f775f 100644 --- a/hugo/content/en/docs/howto/validate-go-cuego/index.md +++ b/hugo/content/en/docs/howto/validate-go-cuego/index.md @@ -84,8 +84,8 @@ and prints the validation result for each instance. {{< step stepNumber="3" >}} Add a dependency on `cuelang.org/go` and ensure the Go module is tidy: -```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjAKZ28gbW9kIHRpZHk=" } -$ go get cuelang.org/go@v0.11.0 +```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjEKZ28gbW9kIHRpZHk=" } +$ go get cuelang.org/go@v0.11.1 ... $ go mod tidy ... diff --git a/hugo/content/en/docs/howto/validate-json-using-go-api/index.md b/hugo/content/en/docs/howto/validate-json-using-go-api/index.md index 74a2c7401..e1c7b0c89 100644 --- a/hugo/content/en/docs/howto/validate-json-using-go-api/index.md +++ b/hugo/content/en/docs/howto/validate-json-using-go-api/index.md @@ -143,8 +143,8 @@ single JSON file, printing the validation result to its standard output stream. {{< step stepNumber="6" >}} Add a dependency on `cuelang.org/go` and ensure the Go module is tidy: -```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjAKZ28gbW9kIHRpZHk=" } -$ go get cuelang.org/go@v0.11.0 +```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjEKZ28gbW9kIHRpZHk=" } +$ go get cuelang.org/go@v0.11.1 ... $ go mod tidy ... diff --git a/hugo/content/en/docs/howto/walk-schemas-using-go-api/index.md b/hugo/content/en/docs/howto/walk-schemas-using-go-api/index.md index 0b8ec1a97..a12b79f37 100644 --- a/hugo/content/en/docs/howto/walk-schemas-using-go-api/index.md +++ b/hugo/content/en/docs/howto/walk-schemas-using-go-api/index.md @@ -155,8 +155,8 @@ func structToType(name cue.Selector, val cue.Value) { {{< step stepNumber="6" >}} Add a dependency on `cuelang.org/go` and ensure the Go module is tidy: -```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjAKZ28gbW9kIHRpZHk=" } -$ go get cuelang.org/go@v0.11.0 +```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjEKZ28gbW9kIHRpZHk=" } +$ go get cuelang.org/go@v0.11.1 ... $ go mod tidy ... diff --git a/hugo/content/en/docs/introduction/installation/index.md b/hugo/content/en/docs/introduction/installation/index.md index 90419344e..3ae3362ae 100644 --- a/hugo/content/en/docs/introduction/installation/index.md +++ b/hugo/content/en/docs/introduction/installation/index.md @@ -25,7 +25,7 @@ The latest version of the `cue` command is: ```text { title="TERMINAL" type="terminal" codeToCopy="Y3VlIHZlcnNpb24=" } $ cue version -cue version v0.11.0 +cue version v0.11.1 ... ``` diff --git a/hugo/content/en/docs/tutorial/converting-json-schema-to-cue/index.md b/hugo/content/en/docs/tutorial/converting-json-schema-to-cue/index.md index 03750d6aa..3890e405b 100644 --- a/hugo/content/en/docs/tutorial/converting-json-schema-to-cue/index.md +++ b/hugo/content/en/docs/tutorial/converting-json-schema-to-cue/index.md @@ -43,7 +43,7 @@ This tutorial is written using the following version of `cue`: ```text { title="TERMINAL" type="terminal" codeToCopy="Y3VlIHZlcnNpb24=" } $ cue version -cue version v0.11.0 +cue version v0.11.1 ... ``` diff --git a/hugo/content/en/docs/tutorial/loading-cue-go-api/index.md b/hugo/content/en/docs/tutorial/loading-cue-go-api/index.md index a63b093cb..b0bfe729c 100644 --- a/hugo/content/en/docs/tutorial/loading-cue-go-api/index.md +++ b/hugo/content/en/docs/tutorial/loading-cue-go-api/index.md @@ -30,7 +30,7 @@ This tutorial is written using the following versions of `go` and `cue`: ```text { title="TERMINAL" type="terminal" codeToCopy="Y3VlIHZlcnNpb24KZ28gdmVyc2lvbg==" } $ cue version -cue version v0.11.0 +cue version v0.11.1 ... $ go version go version go1.23.2 linux/amd64 @@ -128,8 +128,8 @@ func main() { {{< step stepNumber="6" >}} Add a dependency on `cuelang.org/go` and ensure the Go module is tidy: -```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjAKZ28gbW9kIHRpZHk=" } -$ go get cuelang.org/go@v0.11.0 +```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjEKZ28gbW9kIHRpZHk=" } +$ go get cuelang.org/go@v0.11.1 ... $ go mod tidy ... diff --git a/hugo/content/en/docs/tutorial/publishing-modules-to-the-central-registry/index.md b/hugo/content/en/docs/tutorial/publishing-modules-to-the-central-registry/index.md index cc73539a4..c0049d6a5 100644 --- a/hugo/content/en/docs/tutorial/publishing-modules-to-the-central-registry/index.md +++ b/hugo/content/en/docs/tutorial/publishing-modules-to-the-central-registry/index.md @@ -46,7 +46,7 @@ This tutorial is written using the following version of `cue`: ```text { title="TERMINAL" type="terminal" codeToCopy="Y3VlIHZlcnNpb24=" } $ cue version -cue version v0.11.0 +cue version v0.11.1 ... ``` @@ -260,7 +260,7 @@ We can see that the dependencies have now been added to the $ cat cue.mod/module.cue module: "github.com/cueckoo/frostyapp@v0" language: { - version: "v0.11.0" + version: "v0.11.1" } source: { kind: "git" diff --git a/hugo/content/en/docs/tutorial/using-modules-with-go-api/index.md b/hugo/content/en/docs/tutorial/using-modules-with-go-api/index.md index f18e8fb71..459871da1 100644 --- a/hugo/content/en/docs/tutorial/using-modules-with-go-api/index.md +++ b/hugo/content/en/docs/tutorial/using-modules-with-go-api/index.md @@ -39,7 +39,7 @@ This tutorial uses the following version of CUE: ```text { title="TERMINAL" type="terminal" codeToCopy="Y3VlIHZlcnNpb24=" } $ cue version -cue version v0.11.0 +cue version v0.11.1 ... ``` @@ -192,8 +192,8 @@ and then prints a message based on the `config` field. {{< step stepNumber="8" >}} Add a dependency on `cuelang.org/go` and ensure the Go module is tidy: -```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjAKZ28gbW9kIHRpZHk=" } -$ go get cuelang.org/go@v0.11.0 +```text { title="TERMINAL" type="terminal" codeToCopy="Z28gZ2V0IGN1ZWxhbmcub3JnL2dvQHYwLjExLjEKZ28gbW9kIHRpZHk=" } +$ go get cuelang.org/go@v0.11.1 ... $ go mod tidy ... diff --git a/hugo/content/en/docs/tutorial/working-with-a-custom-module-registry/index.md b/hugo/content/en/docs/tutorial/working-with-a-custom-module-registry/index.md index 2a22efd94..e59454aae 100644 --- a/hugo/content/en/docs/tutorial/working-with-a-custom-module-registry/index.md +++ b/hugo/content/en/docs/tutorial/working-with-a-custom-module-registry/index.md @@ -41,7 +41,7 @@ This tutorial is written using the following version of `cmd/cue`: ```text { title="TERMINAL" type="terminal" codeToCopy="Y3VlIHZlcnNpb24=" } $ cue version -cue version v0.11.0 +cue version v0.11.1 ... ``` @@ -296,7 +296,7 @@ We can see that the dependencies have now been added to the $ cat cue.mod/module.cue module: "glacial-tech.example/frostyapp@v0" language: { - version: "v0.11.0" + version: "v0.11.1" } source: { kind: "git" @@ -446,7 +446,7 @@ Here is what the `cue.mod/module.cue` file now looks like: $ cat cue.mod/module.cue module: "glacial-tech.example/frostyapp@v0" language: { - version: "v0.11.0" + version: "v0.11.1" } source: { kind: "git" diff --git a/hugo/content/en/docs/tutorial/working-with-the-central-registry/index.md b/hugo/content/en/docs/tutorial/working-with-the-central-registry/index.md index 17c6c77f9..445c89707 100644 --- a/hugo/content/en/docs/tutorial/working-with-the-central-registry/index.md +++ b/hugo/content/en/docs/tutorial/working-with-the-central-registry/index.md @@ -98,7 +98,7 @@ We can see that the dependencies have now been added to the `cue.mod/module.cue` $ cat cue.mod/module.cue module: "glacial-tech.example/frostyapp@v0" language: { - version: "v0.11.0" + version: "v0.11.1" } deps: { "github.com/cue-labs/examples/frostyconfig@v0": { diff --git a/internal/cmd/preprocessor/cmd/_docker/Dockerfile b/internal/cmd/preprocessor/cmd/_docker/Dockerfile index d97ec0e2c..70cb4c0ac 100644 --- a/internal/cmd/preprocessor/cmd/_docker/Dockerfile +++ b/internal/cmd/preprocessor/cmd/_docker/Dockerfile @@ -24,7 +24,7 @@ RUN \ --mount=type=cache,target=/cache/gocache \ --mount=type=cache,target=/cache/gomodcache \ export GOCACHE=/cache/gocache GOMODCACHE=/cache/gomodcache && \ - GOBIN=/cues/v0.11.0 go install -trimpath cuelang.org/go/cmd/cue@v0.11.0 + GOBIN=/cues/v0.11.1 go install -trimpath cuelang.org/go/cmd/cue@v0.11.1 RUN git clone https://github.com/cue-lang/libcue.git /libcue RUN git -C /libcue reset --hard 1c861cc9cdc5584f5d26b0a7112aa2afee74d4cf @@ -44,14 +44,14 @@ ENV LC_ALL=C.UTF-8 # Default to the default value of CUE. Guides can fix to a different # version explicitly -ENV PATH="/cues/v0.11.0:${PATH}" +ENV PATH="/cues/v0.11.1:${PATH}" ENV PATH="/go/bin:/usr/local/go/bin:${PATH}" -ENV CUELANG_CUE_LATEST="v0.11.0" -ENV CUELANG_CUE_PRERELEASE="v0.11.0" -ENV CUELANG_CUE_TIP="v0.11.0" -ENV CUELANG_CUE_DEFAULT="v0.11.0" -ENV CUELANG_CUE_PLAYGROUND="v0.11.0" +ENV CUELANG_CUE_LATEST="v0.11.1" +ENV CUELANG_CUE_PRERELEASE="v0.11.1" +ENV CUELANG_CUE_TIP="v0.11.1" +ENV CUELANG_CUE_DEFAULT="v0.11.1" +ENV CUELANG_CUE_PLAYGROUND="v0.11.1" WORKDIR / @@ -64,7 +64,7 @@ RUN chmod 755 /usr/bin/entrypoint.sh RUN chown root:root /usr/bin/entrypoint.sh COPY --from=build /go/bin/testscript /go/bin -COPY --from=build /cues/v0.11.0/cue /cues/v0.11.0/cue +COPY --from=build /cues/v0.11.1/cue /cues/v0.11.1/cue COPY --from=build /libcue/libcue.so /usr/local/lib/ ENV LD_LIBRARY_PATH="/usr/local/lib" diff --git a/internal/cmd/preprocessor/cmd/gen_dockerimagetag.go b/internal/cmd/preprocessor/cmd/gen_dockerimagetag.go index 26cf0a58e..2e586487d 100644 --- a/internal/cmd/preprocessor/cmd/gen_dockerimagetag.go +++ b/internal/cmd/preprocessor/cmd/gen_dockerimagetag.go @@ -2,4 +2,4 @@ package cmd -const dockerImageTag = "preprocessor:3b521f5d2e2cddfcbbfd88e0c63c5c53449f834afc32651deb1abec967225d62" +const dockerImageTag = "preprocessor:2d3e1d53d6d29099e94f7dfb93fdd27ec8f6013dbb5cec279b3f01bd3d223808" diff --git a/internal/cmd/preprocessor/cmd/testdata/execute_multistagescript.txtar b/internal/cmd/preprocessor/cmd/testdata/execute_multistagescript.txtar index f048e2b56..b26dd63c9 100644 --- a/internal/cmd/preprocessor/cmd/testdata/execute_multistagescript.txtar +++ b/internal/cmd/preprocessor/cmd/testdata/execute_multistagescript.txtar @@ -254,7 +254,7 @@ hello ```text { title="TERMINAL" type="terminal" codeToCopy="ZXhwb3J0IE1ZVkFSPXZhbHVlCmN1ZSB2ZXJzaW9u" } $ export MYVAR=value $ cue version -cue version v0.11.0 +cue version v0.11.1 go version go1.23.2 -buildmode exe @@ -264,7 +264,7 @@ go version go1.23.2 CGO_ENABLED 0 GOARCH amd64 GOOS linux -cue.lang.version v0.11.0 +cue.lang.version v0.11.1 ``` ```text { title="TERMINAL" type="terminal" codeToCopy="bm9uZXhpc3RlbnQgY29tbWFuZA==" } $ nonexistent command @@ -283,12 +283,12 @@ package site page: { cache: { upload: { - "hidden file": "8Gw9RATA7Z8qg94hzRDMSfMHg0QyfcfoCDIi568cbvo=" - "upload-some-cue": "Qi6/hAlPrh2bY9UQD2CLMlZB3ku1oOrkRfdrwHyYtRk=" - "in-subdir": "0qJmh3aq7QZU2/HOLE30MQebvDJcPzZbV6DUBf0kyNM=" + "hidden file": "KEnW2F+GhYOAE2Wu5fds0AK0LlmMqsPX0TZS6UeY3sU=" + "upload-some-cue": "fy/F9pB3dysxXK2LR4WIEpi4iG0v97KwmNVKOaMcgL8=" + "in-subdir": "Sbe5NNz5Y/1lz7INEoPtcwiOpvjWaykbzdtdALi7ZRk=" } multi_step: { - hash: "VIP77P8O62HK9CELKATL279BJ4GLEA4IBHAA10DCIR66FIDSENO0====" + hash: "0C9BQ1RG925DRRNO3ORPNGA94BKBLGQPFHQPLUEVBJ4NF5DGDDMG====" scriptHash: "4R7CKCD6U3F6M7HMDOORM6L5LARG5T2HN3S7TGFFUFAJ61CAS8LG====" steps: [{ doc: "" @@ -350,7 +350,7 @@ package site cmd: "cue version" exitCode: 0 output: """ - cue version v0.11.0 + cue version v0.11.1 go version go1.23.2 -buildmode exe @@ -360,7 +360,7 @@ package site CGO_ENABLED 0 GOARCH amd64 GOOS linux - cue.lang.version v0.11.0 + cue.lang.version v0.11.1 """ }, { diff --git a/playground/go.mod b/playground/go.mod index 869c507d2..023225e30 100644 --- a/playground/go.mod +++ b/playground/go.mod @@ -3,7 +3,7 @@ module github.com/cue-lang/cuelang.org/playground go 1.23 require ( - cuelang.org/go v0.11.0 + cuelang.org/go v0.11.1 github.com/cockroachdb/apd/v3 v3.2.1 golang.org/x/text v0.19.0 gopkg.in/yaml.v3 v3.0.1 diff --git a/playground/go.sum b/playground/go.sum index 4618ca6dc..acf013327 100644 --- a/playground/go.sum +++ b/playground/go.sum @@ -1,7 +1,7 @@ cuelabs.dev/go/oci/ociregistry v0.0.0-20240906074133-82eb438dd565 h1:R5wwEcbEZSBmeyg91MJZTxfd7WpBo2jPof3AYjRbxwY= cuelabs.dev/go/oci/ociregistry v0.0.0-20240906074133-82eb438dd565/go.mod h1:5A4xfTzHTXfeVJBU6RAUf+QrlfTCW+017q/QiW+sMLg= -cuelang.org/go v0.11.0 h1:2af2nhipqlUHtXk2dtOP5xnMm1ObGvKqIsJUJL1sRE4= -cuelang.org/go v0.11.0/go.mod h1:PBY6XvPUswPPJ2inpvUozP9mebDVTXaeehQikhZPBz0= +cuelang.org/go v0.11.1 h1:pV+49MX1mmvDm8Qh3Za3M786cty8VKPWzQ1Ho4gZRP0= +cuelang.org/go v0.11.1/go.mod h1:PBY6XvPUswPPJ2inpvUozP9mebDVTXaeehQikhZPBz0= github.com/cockroachdb/apd/v3 v3.2.1 h1:U+8j7t0axsIgvQUqthuNm82HIrYXodOV2iWLWtEaIwg= github.com/cockroachdb/apd/v3 v3.2.1/go.mod h1:klXJcjp+FffLTHlhIG69tezTDvdP065naDsHzKhYSqc= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/playground/src/config/gen_cuelang_org_go_version.ts b/playground/src/config/gen_cuelang_org_go_version.ts index 112a6e6f1..e41c34b3d 100644 --- a/playground/src/config/gen_cuelang_org_go_version.ts +++ b/playground/src/config/gen_cuelang_org_go_version.ts @@ -1,3 +1,3 @@ // Code generated site_tool.cue; DO NOT EDIT. -export const CUEVersion = 'v0.11.0'; +export const CUEVersion = 'v0.11.1'; diff --git a/site.cue b/site.cue index 8692226f1..06123d65e 100644 --- a/site.cue +++ b/site.cue @@ -16,7 +16,7 @@ versions: { cue: { [x=string]: var: "CUELANG_CUE_\(strings.ToUpper(x))" latest: { - v: *"v0.11.0" | _ + v: *"v0.11.1" | _ majorDotMinor: strings.Join(list.Take(strings.Split(v, "."), 2), ".") } prerelease: v: *latest.v | _