Skip to content

Commit 5b8601b

Browse files
committed
release kcl v0.7.3-alpha.1
Signed-off-by: peefy <xpf6677@163.com>
1 parent db60132 commit 5b8601b

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.goreleaser.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ before:
44
hooks:
55
# You may remove this if you don't use go modules.
66
- go mod tidy
7-
# - ./scripts/install-kcl-lsp-all.sh
7+
- ./scripts/install-kcl-lsp-all.sh
88

99
# .goreleaser.yml
1010
builds:
@@ -32,8 +32,8 @@ archives:
3232
- goos: windows
3333
format: zip
3434
# Put kcl-language-server binaries into add to the kcl archive.
35-
# files:
36-
# - ./bin/kcl-lsp-v{{ .Version }}-{{ .Os }}-{{ .Arch }}/*
35+
files:
36+
- ./bin/kcl-lsp-v{{ .Version }}-{{ .Os }}-{{ .Arch }}/*
3737

3838
brews:
3939
- tap:

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ RUN /usr/local/bin/kcl
1212
RUN cp -r /root/go/bin/* /usr/local/bin/
1313
RUN apt-get update
1414
RUN apt-get install gcc -y
15+
# The reason for doing this below is to prevent the
16+
# container from not having write permissions.
1517
ENV KCL_GO_DISABLE_ARTIFACT=on
18+
ENV KCL_PKG_PATH=/tmp
19+
ENV KCL_CACHE_PATH=/tmp

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.2
1+
0.7.3-alpha.1

pkg/version/version.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ func getVersion(version string) string {
3333

3434
// All the kpm versions.
3535
const (
36-
VersionTypeLatest = Version_0_7_2
36+
VersionTypeLatest = Version_0_7_3_alpha_1
3737

38+
Version_0_7_3_alpha_1 VersionType = "0.7.3-alpha.1"
3839
Version_0_7_2 VersionType = "0.7.2"
3940
Version_0_7_1 VersionType = "0.7.1"
4041
Version_0_7_0 VersionType = "0.7.0"

0 commit comments

Comments
 (0)