Skip to content

Commit

Permalink
release kcl v0.7.3-alpha.1
Browse files Browse the repository at this point in the history
Signed-off-by: peefy <[email protected]>
  • Loading branch information
Peefy committed Dec 20, 2023
1 parent db60132 commit 5b8601b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# - ./scripts/install-kcl-lsp-all.sh
- ./scripts/install-kcl-lsp-all.sh

# .goreleaser.yml
builds:
Expand Down Expand Up @@ -32,8 +32,8 @@ archives:
- goos: windows
format: zip
# Put kcl-language-server binaries into add to the kcl archive.
# files:
# - ./bin/kcl-lsp-v{{ .Version }}-{{ .Os }}-{{ .Arch }}/*
files:
- ./bin/kcl-lsp-v{{ .Version }}-{{ .Os }}-{{ .Arch }}/*

brews:
- tap:
Expand Down
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@ RUN /usr/local/bin/kcl
RUN cp -r /root/go/bin/* /usr/local/bin/
RUN apt-get update
RUN apt-get install gcc -y
# The reason for doing this below is to prevent the
# container from not having write permissions.
ENV KCL_GO_DISABLE_ARTIFACT=on
ENV KCL_PKG_PATH=/tmp
ENV KCL_CACHE_PATH=/tmp
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.2
0.7.3-alpha.1
3 changes: 2 additions & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ func getVersion(version string) string {

// All the kpm versions.
const (
VersionTypeLatest = Version_0_7_2
VersionTypeLatest = Version_0_7_3_alpha_1

Version_0_7_3_alpha_1 VersionType = "0.7.3-alpha.1"
Version_0_7_2 VersionType = "0.7.2"
Version_0_7_1 VersionType = "0.7.1"
Version_0_7_0 VersionType = "0.7.0"
Expand Down

0 comments on commit 5b8601b

Please sign in to comment.