Skip to content

Commit 2efe9e1

Browse files
authored
Merge pull request #160 from open-uem/task-158
task: prepare 0.8.0 version
2 parents bda0045 + bfb6862 commit 2efe9e1

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.woodpecker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ steps:
99
platforms: linux/amd64
1010
repo: openuem/openuem-console
1111
tags:
12-
- 0.7.1
12+
- 0.8.0
1313
- latest
1414
username:
1515
from_secret: docker_username

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.2 AS build
1+
FROM golang:1.24.4 AS build
22
COPY . ./
33
RUN go install github.com/a-h/templ/cmd/[email protected]
44
RUN templ generate

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ require (
2929
github.com/nats-io/nats.go v1.41.2
3030
github.com/open-uem/ent v0.0.0-20250607102336-cee6366c74d8
3131
github.com/open-uem/nats v0.0.0-20250514125548-3bae96c53080
32-
github.com/open-uem/utils v0.0.0-20250610103233-92d3a95ff479
32+
github.com/open-uem/utils v0.0.0-20250611060546-cab35b3801b9
3333
github.com/open-uem/wingetcfg v0.0.0-20250317160420-5c7e4c410be1
3434
github.com/pkg/sftp v1.13.9
3535
github.com/stretchr/testify v1.10.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ github.com/open-uem/nats v0.0.0-20250514125548-3bae96c53080 h1:Sq5vg52YJni0pifg2
151151
github.com/open-uem/nats v0.0.0-20250514125548-3bae96c53080/go.mod h1:JB6zAM56L+iD+BLn3o/vNdg9X5IFn52dSvltnIdiQAQ=
152152
github.com/open-uem/utils v0.0.0-20250610103233-92d3a95ff479 h1:HLc3jlPY5uy3EiacfQvzk2bTDIfgdkpVNZpcZdmWG1E=
153153
github.com/open-uem/utils v0.0.0-20250610103233-92d3a95ff479/go.mod h1:nPL4xlsiCPyUiF8ntnyrlyz+pVjizIC+N5+TOvj3TLc=
154+
github.com/open-uem/utils v0.0.0-20250611060546-cab35b3801b9 h1:u54f6Oq97w7FDHl9oOWKe97TRddxhfqrAPCdXRwiF2A=
155+
github.com/open-uem/utils v0.0.0-20250611060546-cab35b3801b9/go.mod h1:nPL4xlsiCPyUiF8ntnyrlyz+pVjizIC+N5+TOvj3TLc=
154156
github.com/open-uem/wingetcfg v0.0.0-20250317160420-5c7e4c410be1 h1:OwLny9z8SqKVqPMVoJCMftGPB9A7T96W/5o70Yhanus=
155157
github.com/open-uem/wingetcfg v0.0.0-20250317160420-5c7e4c410be1/go.mod h1:dXSggJ7Na4J4WTII2YmxKmlpwlHzMjuHUrBJkn1/DrU=
156158
github.com/pdfcpu/pdfcpu v0.10.2 h1:DB2dWuoq0eF0QwHjgyLirYKLTCzFOoZdmmIUSu72aL0=

internal/common/cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func (w *Worker) GenerateConsoleConfigFromCLI(cCtx *cli.Context) error {
4949
w.Country = cCtx.String("country")
5050
w.ReverseProxyAuthPort = cCtx.String("reverse-proxy-auth-port")
5151
w.ReverseProxyServer = cCtx.String("reverse-proxy-server")
52-
w.Version = "0.7.1"
52+
w.Version = "0.8.0"
5353

5454
return nil
5555
}

0 commit comments

Comments
 (0)