File tree 4 files changed +7
-3
lines changed
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# Change Log
4
4
5
+ ## 2025-03-19 - Runtime 0.17.5
6
+
7
+ - fix: embed runtime version with correct path [ #796 ] ( https://github.com/hypermodeinc/modus/pull/796 )
8
+
5
9
## 2025-03-19 - AssemblyScript SDK 0.17.4
6
10
7
11
- fix: correct json input/output of model invocations [ #795 ] ( https://github.com/hypermodeinc/modus/pull/795 )
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ COPY --from=node-builder /src/dist ./explorer/content/dist
36
36
37
37
# build the runtime binary
38
38
ARG TARGETOS TARGETARCH RUNTIME_RELEASE_VERSION
39
- RUN GOOS=$TARGETOS GOARCH=$TARGETARCH go build -o modus_runtime -ldflags "-s -w -X github.com/hypermodeinc/modus/runtime/config .version=$RUNTIME_RELEASE_VERSION" .
39
+ RUN GOOS=$TARGETOS GOARCH=$TARGETARCH go build -o modus_runtime -ldflags "-s -w -X github.com/hypermodeinc/modus/runtime/app .version=$RUNTIME_RELEASE_VERSION" .
40
40
41
41
# build the container image
42
42
FROM ubuntu:24.04
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ builds:
26
26
ldflags :
27
27
- -s
28
28
- -w
29
- - -X github.com/hypermodeinc/modus/runtime/config .version={{.Version}}
29
+ - -X github.com/hypermodeinc/modus/runtime/app .version={{.Version}}
30
30
- >-
31
31
{{- if eq .Os "windows"}}
32
32
-checklinkname=0
Original file line number Diff line number Diff line change 1
1
EXECUTABLE := modus_runtime
2
2
VERSION := $(shell git describe --tags --always --match 'runtime/* ' | sed 's/^runtime\///')
3
- LDFLAGS := -s -w -X github.com/hypermodeinc/modus/runtime/config .version=$(VERSION )
3
+ LDFLAGS := -s -w -X github.com/hypermodeinc/modus/runtime/app .version=$(VERSION )
4
4
5
5
ifneq ($(OS ) , Windows_NT)
6
6
OS := $(shell uname -s)
You can’t perform that action at this time.
0 commit comments