We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f7201f commit 2553e1aCopy full SHA for 2553e1a
scripts/tzgen/main.go
@@ -16,7 +16,10 @@ import (
16
"strings"
17
)
18
19
-const tzdataURL = "https://data.iana.org/time-zones/releases/tzdata2025b.tar.gz"
+const (
20
+ tzVersion = "2025b"
21
+ tzdataURL = "https://data.iana.org/time-zones/releases/tzdata" + tzVersion + ".tar.gz"
22
+)
23
24
func main() {
25
if err := run(context.Background()); err != nil {
0 commit comments