Skip to content

Commit 5b21215

Browse files
authored
Merge pull request #1511 from Roasbeef/v-06-rc1
build: bump version to v0.6 rc1
2 parents c3e15eb + e713a85 commit 5b21215

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919
# go needs absolute directories, using the $HOME variable doesn't work here.
2020
GOPATH: /home/runner/work/go
2121

22-
GO_VERSION: '1.23.6'
22+
GO_VERSION: '1.23.9'
2323

2424
LITD_ITEST_BRANCH: 'master'
2525

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defaults:
1010
shell: bash
1111

1212
env:
13-
GO_VERSION: 1.23.6
13+
GO_VERSION: 1.23.9
1414

1515
jobs:
1616
main:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.6-alpine as builder
1+
FROM golang:1.23.9-alpine as builder
22

33
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
44
# queries required to connect to linked containers succeed.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ DOCKER_TOOLS = docker run \
5757
-v $(shell bash -c "mkdir -p /tmp/go-lint-cache; echo /tmp/go-lint-cache"):/root/.cache/golangci-lint \
5858
-v $$(pwd):/build taproot-assets-tools
5959

60-
GO_VERSION = 1.23.6
60+
GO_VERSION = 1.23.9
6161

6262
GREEN := "\\033[0;32m"
6363
NC := "\\033[0m"

dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.6 as builder
1+
FROM golang:1.23.9 as builder
22

33
WORKDIR /app
44

itest/loadtest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.6 as builder
1+
FROM golang:1.23.9 as builder
22

33
WORKDIR /app
44

make/builder.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.6-bookworm
1+
FROM golang:1.23.9-bookworm
22

33
MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering>
44

taprpc/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.6-bookworm
1+
FROM golang:1.23.9-bookworm
22

33
RUN apt-get update && apt-get install -y \
44
git \

version.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ const (
4242
AppMajor uint = 0
4343

4444
// AppMinor defines the minor version of this binary.
45-
AppMinor uint = 5
45+
AppMinor uint = 6
4646

4747
// AppPatch defines the application patch for this binary.
48-
AppPatch uint = 1
48+
AppPatch uint = 0
4949

5050
// AppStatus defines the release status of this binary (e.g. beta).
5151
AppStatus = "alpha"
5252

5353
// AppPreRelease defines the pre-release version of this binary.
5454
// It MUST only contain characters from the semantic versioning spec.
55-
AppPreRelease = ""
55+
AppPreRelease = "rc1"
5656

5757
// GitTagIncludeStatus indicates whether the status should be included
5858
// in the git tag name.

0 commit comments

Comments
 (0)