Skip to content

Commit

Permalink
build: bump Go version to v1.21.0, lnd version to v0.17.0 rc1 (#7914)
Browse files Browse the repository at this point in the history
* build: update Go version to 1.21.0

* build: bump version to v0.17.0 rc1
  • Loading branch information
Roasbeef committed Aug 24, 2023
1 parent c07ec04 commit dde1495
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ env:
# /dev.Dockerfile
# /make/builder.Dockerfile
# /.github/workflows/release.yml
GO_VERSION: 1.20.3
GO_VERSION: 1.21.0

jobs:
########################
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
# /dev.Dockerfile
# /make/builder.Dockerfile
# /.github/workflows/main.yml
GO_VERSION: 1.20.3
GO_VERSION: 1.21.0

jobs:
main:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ go:
# /make/builder.Dockerfile
# /.github/workflows/main.yml
# /.github/workflows/release.yml
- "1.20.3"
- "1.21.0"

env:
global:
Expand Down
6 changes: 3 additions & 3 deletions build/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ const (
AppMajor uint = 0

// AppMinor defines the minor version of this binary.
AppMinor uint = 16
AppMinor uint = 17

// AppPatch defines the application patch for this binary.
AppPatch uint = 99
AppPatch uint = 0

// AppPreRelease MUST only contain characters from semanticAlphabet
// per the semantic versioning spec.
AppPreRelease = "beta"
AppPreRelease = "beta.rc1"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# /make/builder.Dockerfile
# /.github/workflows/main.yml
# /.github/workflows/release.yml
FROM golang:1.20.3-alpine as builder
FROM golang:1.21.0-alpine as builder

LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"

Expand Down
2 changes: 1 addition & 1 deletion make/builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# /dev.Dockerfile
# /.github/workflows/main.yml
# /.github/workflows/release.yml
FROM golang:1.20.3-buster
FROM golang:1.21.0-buster

MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering>

Expand Down

0 comments on commit dde1495

Please sign in to comment.