diff options
| author | Shulhan <ms@kilabit.info> | 2024-03-27 01:12:18 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-03-27 01:12:18 +0700 |
| commit | 606c6a00f630f4c1d6811fde8c4e5b5e3ddd3f6d (patch) | |
| tree | 11158f71caa428806dc5826f056415179675e7bb | |
| parent | 7560d70499b3d6108f0befdf6556c4ac51640402 (diff) | |
| download | rescached-606c6a00f630f4c1d6811fde8c4e5b5e3ddd3f6d.tar.xz | |
go.mod: fix the go module versioning
Seems like the latest Go require the minor version to be explicitly
defined [1][2].
[1] https://github.com/golang/go/issues/65568
[2] https://github.com/golang/go/issues/66175
| -rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ module git.sr.ht/~shulhan/rescached -go 1.22 +go 1.22.0 require ( git.sr.ht/~shulhan/ciigo v0.11.1-0.20240321082653-aed750e52cec |
