Skip to content

Commit 1ce1c5a

Browse files
committed
Update to Go 1.25
1 parent 457bcf8 commit 1ce1c5a

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222
- Lua operator metamethods now receive their arguments in the correct order
2323
when one of the operands is a constant
2424
([#152](https://github.com/256lights/zb/issues/152)).
25+
- Updated to Go 1.25.2.
2526

2627
## [0.1.0][] - 2025-06-15
2728

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
inherit (pkgs.lib.attrsets) optionalAttrs;
2525

26-
go = pkgs.go_1_24;
27-
buildGoModule = pkgs.buildGo124Module;
26+
go = pkgs.go_1_25;
27+
buildGoModule = pkgs.buildGo125Module;
2828

2929
zbPackage = pkgs.callPackage ./package.nix {
3030
inherit buildGoModule;
@@ -40,9 +40,7 @@
4040
inherit buildGoModule;
4141
})
4242
go
43-
(pkgs.gopls.override {
44-
inherit buildGoModule;
45-
})
43+
pkgs.gopls
4644

4745
# JavaScript tooling.
4846
pkgs.nodejs_22

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module zb.256lights.llc/pkg
22

3-
go 1.24.0
3+
go 1.25.2
44

55
require (
66
github.com/coreos/go-systemd/v22 v22.5.0

0 commit comments

Comments
 (0)