-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.txt
815 lines (595 loc) · 34.2 KB
/
release.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
Go
* Why Go
* Get Started
* Docs
* Packages
* Play
* Blog
[ Submit ]
Go.
* Why Go
* Get Started
* Docs
* Packages
* Play
* Blog
Release History
This page summarizes the changes between official stable releases of Go.
The change log has the full details.
To update to a specific release, use:
git fetch --tags
git checkout goX.Y.Z
Release Policy
Each major Go release is supported until there are two newer major
releases. For example, Go 1.5 was supported until the Go 1.7 release, and
Go 1.6 was supported until the Go 1.8 release. We fix critical problems,
including critical security problems, in supported releases as needed by
issuing minor revisions (for example, Go 1.6.1, Go 1.6.2, and so on).
go1.18 (released 2022-03-15)
Go 1.18 is a major release of Go. Read the Go 1.18 Release Notes for more
information.
Minor revisions
go1.18.1 (released 2022-04-12) includes security fixes to the
crypto/elliptic, crypto/x509, and encoding/pem packages, as well as bug
fixes to the compiler, linker, runtime, the go command, vet, and the
bytes, crypto/x509, and go/types packages. See the Go 1.18.1 milestone on
our issue tracker for details.
go1.18.2 (released 2022-05-10) includes security fixes to the syscall
package, as well as bug fixes to the compiler, runtime, the go command,
and the crypto/x509, go/types, net/http/httptest, reflect, and sync/atomic
packages. See the Go 1.18.2 milestone on our issue tracker for details.
go1.17 (released 2021-08-16)
Go 1.17 is a major release of Go. Read the Go 1.17 Release Notes for more
information.
Minor revisions
go1.17.1 (released 2021-09-09) includes a security fix to the archive/zip
package, as well as bug fixes to the compiler, linker, the go command, and
the crypto/rand, embed, go/types, html/template, and net/http packages.
See the Go 1.17.1 milestone on our issue tracker for details.
go1.17.2 (released 2021-10-07) includes security fixes to linker and the
misc/wasm directory, as well as bug fixes to the compiler, runtime, the go
command, and the text/template and time packages. See the Go 1.17.2
milestone on our issue tracker for details.
go1.17.3 (released 2021-11-04) includes security fixes to the archive/zip
and debug/macho packages, as well as bug fixes to the compiler, linker,
runtime, the go command, the misc/wasm directory, and the net/http and
syscall packages. See the Go 1.17.3 milestone on our issue tracker for
details.
go1.17.4 (released 2021-12-02) includes fixes to the compiler, linker,
runtime, and the go/types, net/http, and time packages. See the Go 1.17.4
milestone on our issue tracker for details.
go1.17.5 (released 2021-12-09) includes security fixes to the net/http and
syscall packages. See the Go 1.17.5 milestone on our issue tracker for
details.
go1.17.6 (released 2022-01-06) includes fixes to the compiler, linker,
runtime, and the crypto/x509, net/http, and reflect packages. See the Go
1.17.6 milestone on our issue tracker for details.
go1.17.7 (released 2022-02-10) includes security fixes to the go command,
and the crypto/elliptic and math/big packages, as well as bug fixes to the
compiler, linker, runtime, the go command, and the debug/macho, debug/pe,
and net/http/httptest packages. See the Go 1.17.7 milestone on our issue
tracker for details.
go1.17.8 (released 2022-03-03) includes a security fix to the
regexp/syntax package, as well as bug fixes to the compiler, runtime, the
go command, and the crypto/x509 and net packages. See the Go 1.17.8
milestone on our issue tracker for details.
go1.17.9 (released 2022-04-12) includes security fixes to the
crypto/elliptic and encoding/pem packages, as well as bug fixes to the
linker and runtime. See the Go 1.17.9 milestone on our issue tracker for
details.
go1.17.10 (released 2022-05-10) includes security fixes to the syscall
package, as well as bug fixes to the compiler, runtime, and the
crypto/x509 and net/http/httptest packages. See the Go 1.17.10 milestone
on our issue tracker for details.
go1.16 (released 2021-02-16)
Go 1.16 is a major release of Go. Read the Go 1.16 Release Notes for more
information.
Minor revisions
go1.16.1 (released 2021-03-10) includes security fixes to the archive/zip
and encoding/xml packages. See the Go 1.16.1 milestone on our issue
tracker for details.
go1.16.2 (released 2021-03-11) includes fixes to cgo, the compiler,
linker, the go command, and the syscall and time packages. See the Go
1.16.2 milestone on our issue tracker for details.
go1.16.3 (released 2021-04-01) includes fixes to the compiler, linker,
runtime, the go command, and the testing and time packages. See the Go
1.16.3 milestone on our issue tracker for details.
go1.16.4 (released 2021-05-06) includes a security fix to the net/http
package, as well as bug fixes to the compiler, runtime, and the
archive/zip, syscall, and time packages. See the Go 1.16.4 milestone on
our issue tracker for details.
go1.16.5 (released 2021-06-03) includes security fixes to the archive/zip,
math/big, net, and net/http/httputil packages, as well as bug fixes to the
linker, the go command, and the net/http package. See the Go 1.16.5
milestone on our issue tracker for details.
go1.16.6 (released 2021-07-12) includes a security fix to the crypto/tls
package, as well as bug fixes to the compiler, and the net and net/http
packages. See the Go 1.16.6 milestone on our issue tracker for details.
go1.16.7 (released 2021-08-05) includes a security fix to the
net/http/httputil package, as well as bug fixes to the compiler, linker,
runtime, the go command, and the net/http package. See the Go 1.16.7
milestone on our issue tracker for details.
go1.16.8 (released 2021-09-09) includes a security fix to the archive/zip
package, as well as bug fixes to the archive/zip,
go/internal/gccgoimporter, html/template, net/http, and runtime/pprof
packages. See the Go 1.16.8 milestone on our issue tracker for details.
go1.16.9 (released 2021-10-07) includes security fixes to linker and the
misc/wasm directory, as well as bug fixes to runtime and the text/template
package. See the Go 1.16.9 milestone on our issue tracker for details.
go1.16.10 (released 2021-11-04) includes security fixes to the archive/zip
and debug/macho packages, as well as bug fixes to the compiler, linker,
runtime, the misc/wasm directory, and the net/http package. See the Go
1.16.10 milestone on our issue tracker for details.
go1.16.11 (released 2021-12-02) includes fixes to the compiler, runtime,
and the net/http, net/http/httptest, and time packages. See the Go 1.16.11
milestone on our issue tracker for details.
go1.16.12 (released 2021-12-09) includes security fixes to the net/http
and syscall packages. See the Go 1.16.12 milestone on our issue tracker
for details.
go1.16.13 (released 2022-01-06) includes fixes to the compiler, linker,
runtime, and the net/http package. See the Go 1.16.13 milestone on our
issue tracker for details.
go1.16.14 (released 2022-02-10) includes security fixes to the go command,
and the crypto/elliptic and math/big packages, as well as bug fixes to the
compiler, linker, runtime, the go command, and the debug/macho, debug/pe,
net/http/httptest, and testing packages. See the Go 1.16.14 milestone on
our issue tracker for details.
go1.16.15 (released 2022-03-03) includes a security fix to the
regexp/syntax package, as well as bug fixes to the compiler, runtime, the
go command, and the net package. See the Go 1.16.15 milestone on our issue
tracker for details.
go1.15 (released 2020-08-11)
Go 1.15 is a major release of Go. Read the Go 1.15 Release Notes for more
information.
Minor revisions
go1.15.1 (released 2020-09-01) includes security fixes to the net/http/cgi
and net/http/fcgi packages. See the Go 1.15.1 milestone on our issue
tracker for details.
go1.15.2 (released 2020-09-09) includes fixes to the compiler, runtime,
documentation, the go command, and the net/mail, os, sync, and testing
packages. See the Go 1.15.2 milestone on our issue tracker for details.
go1.15.3 (released 2020-10-14) includes fixes to cgo, the compiler,
runtime, the go command, and the bytes, plugin, and testing packages. See
the Go 1.15.3 milestone on our issue tracker for details.
go1.15.4 (released 2020-11-05) includes fixes to cgo, the compiler,
linker, runtime, and the compress/flate, net/http, reflect, and time
packages. See the Go 1.15.4 milestone on our issue tracker for details.
go1.15.5 (released 2020-11-12) includes security fixes to the go command
and the math/big package. See the Go 1.15.5 milestone on our issue tracker
for details.
go1.15.6 (released 2020-12-03) includes fixes to the compiler, linker,
runtime, the go command, and the io package. See the Go 1.15.6 milestone
on our issue tracker for details.
go1.15.7 (released 2021-01-19) includes security fixes to the go command
and the crypto/elliptic package. See the Go 1.15.7 milestone on our issue
tracker for details.
go1.15.8 (released 2021-02-04) includes fixes to the compiler, linker,
runtime, the go command, and the net/http package. See the Go 1.15.8
milestone on our issue tracker for details.
go1.15.9 (released 2021-03-10) includes security fixes to the encoding/xml
package. See the Go 1.15.9 milestone on our issue tracker for details.
go1.15.10 (released 2021-03-11) includes fixes to the compiler, the go
command, and the net/http, os, syscall, and time packages. See the Go
1.15.10 milestone on our issue tracker for details.
go1.15.11 (released 2021-04-01) includes fixes to cgo, the compiler,
linker, runtime, the go command, and the database/sql and net/http
packages. See the Go 1.15.11 milestone on our issue tracker for details.
go1.15.12 (released 2021-05-06) includes a security fix to the net/http
package, as well as bug fixes to the compiler, runtime, and the
archive/zip, syscall, and time packages. See the Go 1.15.12 milestone on
our issue tracker for details.
go1.15.13 (released 2021-06-03) includes security fixes to the
archive/zip, math/big, net, and net/http/httputil packages, as well as bug
fixes to the linker, the go command, and the math/big and net/http
packages. See the Go 1.15.13 milestone on our issue tracker for details.
go1.15.14 (released 2021-07-12) includes a security fix to the crypto/tls
package, as well as bug fixes to the linker and the net package. See the
Go 1.15.14 milestone on our issue tracker for details.
go1.15.15 (released 2021-08-05) includes a security fix to the
net/http/httputil package, as well as bug fixes to the compiler, runtime,
the go command, and the net/http package. See the Go 1.15.15 milestone on
our issue tracker for details.
go1.14 (released 2020-02-25)
Go 1.14 is a major release of Go. Read the Go 1.14 Release Notes for more
information.
Minor revisions
go1.14.1 (released 2020-03-19) includes fixes to the go command, tools,
and the runtime. See the Go 1.14.1 milestone on our issue tracker for
details.
go1.14.2 (released 2020-04-08) includes fixes to cgo, the go command, the
runtime, and the os/exec and testing packages. See the Go 1.14.2 milestone
on our issue tracker for details.
go1.14.3 (released 2020-05-14) includes fixes to cgo, the compiler, the
runtime, and the go/doc and math/big packages. See the Go 1.14.3 milestone
on our issue tracker for details.
go1.14.4 (released 2020-06-01) includes fixes to the go doc command, the
runtime, and the encoding/json and os packages. See the Go 1.14.4
milestone on our issue tracker for details.
go1.14.5 (released 2020-07-14) includes security fixes to the crypto/x509
and net/http packages. See the Go 1.14.5 milestone on our issue tracker
for details.
go1.14.6 (released 2020-07-16) includes fixes to the go command, the
compiler, the linker, vet, and the database/sql, encoding/json, net/http,
reflect, and testing packages. See the Go 1.14.6 milestone on our issue
tracker for details.
go1.14.7 (released 2020-08-06) includes security fixes to the
encoding/binary package. See the Go 1.14.7 milestone on our issue tracker
for details.
go1.14.8 (released 2020-09-01) includes security fixes to the net/http/cgi
and net/http/fcgi packages. See the Go 1.14.8 milestone on our issue
tracker for details.
go1.14.9 (released 2020-09-09) includes fixes to the compiler, linker,
runtime, documentation, and the net/http and testing packages. See the Go
1.14.9 milestone on our issue tracker for details.
go1.14.10 (released 2020-10-14) includes fixes to the compiler, runtime,
and the plugin and testing packages. See the Go 1.14.10 milestone on our
issue tracker for details.
go1.14.11 (released 2020-11-05) includes fixes to the runtime, and the
net/http and time packages. See the Go 1.14.11 milestone on our issue
tracker for details.
go1.14.12 (released 2020-11-12) includes security fixes to the go command
and the math/big package. See the Go 1.14.12 milestone on our issue
tracker for details.
go1.14.13 (released 2020-12-03) includes fixes to the compiler, runtime,
and the go command. See the Go 1.14.13 milestone on our issue tracker for
details.
go1.14.14 (released 2021-01-19) includes security fixes to the go command
and the crypto/elliptic package. See the Go 1.14.14 milestone on our issue
tracker for details.
go1.14.15 (released 2021-02-04) includes fixes to the compiler, runtime,
the go command, and the net/http package. See the Go 1.14.15 milestone on
our issue tracker for details.
go1.13 (released 2019-09-03)
Go 1.13 is a major release of Go. Read the Go 1.13 Release Notes for more
information.
Minor revisions
go1.13.1 (released 2019-09-25) includes security fixes to the net/http and
net/textproto packages. See the Go 1.13.1 milestone on our issue tracker
for details.
go1.13.2 (released 2019-10-17) includes security fixes to the compiler and
the crypto/dsa package. See the Go 1.13.2 milestone on our issue tracker
for details.
go1.13.3 (released 2019-10-17) includes fixes to the go command, the
toolchain, the runtime, and the crypto/ecdsa, net, net/http, and syscall
packages. See the Go 1.13.3 milestone on our issue tracker for details.
go1.13.4 (released 2019-10-31) includes fixes to the net/http and syscall
packages. It also fixes an issue on macOS 10.15 Catalina where the
non-notarized installer and binaries were being rejected by Gatekeeper.
See the Go 1.13.4 milestone on our issue tracker for details.
go1.13.5 (released 2019-12-04) includes fixes to the go command, the
runtime, the linker, and the net/http package. See the Go 1.13.5 milestone
on our issue tracker for details.
go1.13.6 (released 2020-01-09) includes fixes to the runtime and the
net/http package. See the Go 1.13.6 milestone on our issue tracker for
details.
go1.13.7 (released 2020-01-28) includes two security fixes to the
crypto/x509 package. See the Go 1.13.7 milestone on our issue tracker for
details.
go1.13.8 (released 2020-02-12) includes fixes to the runtime, and the
crypto/x509 and net/http packages. See the Go 1.13.8 milestone on our
issue tracker for details.
go1.13.9 (released 2020-03-19) includes fixes to the go command, tools,
the runtime, the toolchain, and the crypto/cypher package. See the Go
1.13.9 milestone on our issue tracker for details.
go1.13.10 (released 2020-04-08) includes fixes to the go command, the
runtime, and the os/exec and time packages. See the Go 1.13.10 milestone
on our issue tracker for details.
go1.13.11 (released 2020-05-14) includes fixes to the compiler. See the Go
1.13.11 milestone on our issue tracker for details.
go1.13.12 (released 2020-06-01) includes fixes to the runtime, and the
go/types and math/big packages. See the Go 1.13.12 milestone on our issue
tracker for details.
go1.13.13 (released 2020-07-14) includes security fixes to the crypto/x509
and net/http packages. See the Go 1.13.13 milestone on our issue tracker
for details.
go1.13.14 (released 2020-07-16) includes fixes to the compiler, vet, and
the database/sql, net/http, and reflect packages. See the Go 1.13.14
milestone on our issue tracker for details.
go1.13.15 (released 2020-08-06) includes security fixes to the
encoding/binary package. See the Go 1.13.15 milestone on our issue tracker
for details.
go1.12 (released 2019-02-25)
Go 1.12 is a major release of Go. Read the Go 1.12 Release Notes for more
information.
Minor revisions
go1.12.1 (released 2019-03-14) includes fixes to cgo, the compiler, the go
command, and the fmt, net/smtp, os, path/filepath, sync, and text/template
packages. See the Go 1.12.1 milestone on our issue tracker for details.
go1.12.2 (released 2019-04-05) includes fixes to the compiler, the go
command, the runtime, and the doc, net, net/http/httputil, and os
packages. See the Go 1.12.2 milestone on our issue tracker for details.
go1.12.3 (released 2019-04-08) was accidentally released without its
intended fix. It is identical to go1.12.2, except for its version number.
The intended fix is in go1.12.4.
go1.12.4 (released 2019-04-11) fixes an issue where using the prebuilt
binary releases on older versions of GNU/Linux led to failures when
linking programs that used cgo. Only Linux users who hit this issue need
to update.
go1.12.5 (released 2019-05-06) includes fixes to the compiler, the linker,
the go command, the runtime, and the os package. See the Go 1.12.5
milestone on our issue tracker for details.
go1.12.6 (released 2019-06-11) includes fixes to the compiler, the linker,
the go command, and the crypto/x509, net/http, and os packages. See the Go
1.12.6 milestone on our issue tracker for details.
go1.12.7 (released 2019-07-08) includes fixes to cgo, the compiler, and
the linker. See the Go 1.12.7 milestone on our issue tracker for details.
go1.12.8 (released 2019-08-13) includes security fixes to the net/http and
net/url packages. See the Go 1.12.8 milestone on our issue tracker for
details.
go1.12.9 (released 2019-08-15) includes fixes to the linker, and the
math/big and os packages. See the Go 1.12.9 milestone on our issue tracker
for details.
go1.12.10 (released 2019-09-25) includes security fixes to the net/http
and net/textproto packages. See the Go 1.12.10 milestone on our issue
tracker for details.
go1.12.11 (released 2019-10-17) includes security fixes to the crypto/dsa
package. See the Go 1.12.11 milestone on our issue tracker for details.
go1.12.12 (released 2019-10-17) includes fixes to the go command, runtime,
and the net and syscall packages. See the Go 1.12.12 milestone on our
issue tracker for details.
go1.12.13 (released 2019-10-31) fixes an issue on macOS 10.15 Catalina
where the non-notarized installer and binaries were being rejected by
Gatekeeper. Only macOS users who hit this issue need to update.
go1.12.14 (released 2019-12-04) includes a fix to the runtime. See the Go
1.12.14 milestone on our issue tracker for details.
go1.12.15 (released 2020-01-09) includes fixes to the runtime and the
net/http package. See the Go 1.12.15 milestone on our issue tracker for
details.
go1.12.16 (released 2020-01-28) includes two security fixes to the
crypto/x509 package. See the Go 1.12.16 milestone on our issue tracker for
details.
go1.12.17 (released 2020-02-12) includes a fix to the runtime. See the Go
1.12.17 milestone on our issue tracker for details.
go1.11 (released 2018-08-24)
Go 1.11 is a major release of Go. Read the Go 1.11 Release Notes for more
information.
Minor revisions
go1.11.1 (released 2018-10-01) includes fixes to the compiler,
documentation, go command, runtime, and the crypto/x509, encoding/json,
go/types, net, net/http, and reflect packages. See the Go 1.11.1 milestone
on our issue tracker for details.
go1.11.2 (released 2018-11-02) includes fixes to the compiler, linker,
documentation, go command, and the database/sql and go/types packages. See
the Go 1.11.2 milestone on our issue tracker for details.
go1.11.3 (released 2018-12-12) includes three security fixes to "go get"
and the crypto/x509 package. See the Go 1.11.3 milestone on our issue
tracker for details.
go1.11.4 (released 2018-12-14) includes fixes to cgo, the compiler,
linker, runtime, documentation, go command, and the go/types and net/http
packages. It includes a fix to a bug introduced in Go 1.11.3 that broke go
get for import path patterns containing "...". See the Go 1.11.4 milestone
on our issue tracker for details.
go1.11.5 (released 2019-01-23) includes a security fix to the
crypto/elliptic package. See the Go 1.11.5 milestone on our issue tracker
for details.
go1.11.6 (released 2019-03-14) includes fixes to cgo, the compiler,
linker, runtime, go command, and the crypto/x509, encoding/json, net, and
net/url packages. See the Go 1.11.6 milestone on our issue tracker for
details.
go1.11.7 (released 2019-04-05) includes fixes to the runtime and the net
package. See the Go 1.11.7 milestone on our issue tracker for details.
go1.11.8 (released 2019-04-08) was accidentally released without its
intended fix. It is identical to go1.11.7, except for its version number.
The intended fix is in go1.11.9.
go1.11.9 (released 2019-04-11) fixes an issue where using the prebuilt
binary releases on older versions of GNU/Linux led to failures when
linking programs that used cgo. Only Linux users who hit this issue need
to update.
go1.11.10 (released 2019-05-06) includes fixes to the runtime and the
linker. See the Go 1.11.10 milestone on our issue tracker for details.
go1.11.11 (released 2019-06-11) includes a fix to the crypto/x509 package.
See the Go 1.11.11 milestone on our issue tracker for details.
go1.11.12 (released 2019-07-08) includes fixes to the compiler and the
linker. See the Go 1.11.12 milestone on our issue tracker for details.
go1.11.13 (released 2019-08-13) includes security fixes to the net/http
and net/url packages. See the Go 1.11.13 milestone on our issue tracker
for details.
go1.10 (released 2018-02-16)
Go 1.10 is a major release of Go. Read the Go 1.10 Release Notes for more
information.
Minor revisions
go1.10.1 (released 2018-03-28) includes fixes to the compiler, runtime,
and the archive/zip, crypto/tls, crypto/x509, encoding/json, net,
net/http, and net/http/pprof packages. See the Go 1.10.1 milestone on our
issue tracker for details.
go1.10.2 (released 2018-05-01) includes fixes to the compiler, linker, and
go command. See the Go 1.10.2 milestone on our issue tracker for details.
go1.10.3 (released 2018-06-05) includes fixes to the go command, and the
crypto/tls, crypto/x509, and strings packages. In particular, it adds
minimal support to the go command for the vgo transition. See the Go
1.10.3 milestone on our issue tracker for details.
go1.10.4 (released 2018-08-24) includes fixes to the go command, linker,
and the bytes, mime/multipart, net/http, and strings packages. See the Go
1.10.4 milestone on our issue tracker for details.
go1.10.5 (released 2018-11-02) includes fixes to the go command, linker,
runtime, and the database/sql package. See the Go 1.10.5 milestone on our
issue tracker for details.
go1.10.6 (released 2018-12-12) includes three security fixes to "go get"
and the crypto/x509 package. It contains the same fixes as Go 1.11.3 and
was released at the same time. See the Go 1.10.6 milestone on our issue
tracker for details.
go1.10.7 (released 2018-12-14) includes a fix to a bug introduced in Go
1.10.6 that broke go get for import path patterns containing "...". See
the Go 1.10.7 milestone on our issue tracker for details.
go1.10.8 (released 2019-01-23) includes a security fix to the
crypto/elliptic package. See the Go 1.10.8 milestone on our issue tracker
for details.
go1.9 (released 2017-08-24)
Go 1.9 is a major release of Go. Read the Go 1.9 Release Notes for more
information.
Minor revisions
go1.9.1 (released 2017-10-04) includes two security fixes. See the Go
1.9.1 milestone on our issue tracker for details.
go1.9.2 (released 2017-10-25) includes fixes to the compiler, linker,
runtime, documentation, go command, and the crypto/x509, database/sql,
log, and net/smtp packages. It includes a fix to a bug introduced in Go
1.9.1 that broke go get of non-Git repositories under certain conditions.
See the Go 1.9.2 milestone on our issue tracker for details.
go1.9.3 (released 2018-01-22) includes fixes to the compiler, runtime, and
the database/sql, math/big, net/http, and net/url packages. See the Go
1.9.3 milestone on our issue tracker for details.
go1.9.4 (released 2018-02-07) includes a security fix to "go get". See the
Go 1.9.4 milestone on our issue tracker for details.
go1.9.5 (released 2018-03-28) includes fixes to the compiler, go command,
and the net/http/pprof package. See the Go 1.9.5 milestone on our issue
tracker for details.
go1.9.6 (released 2018-05-01) includes fixes to the compiler and go
command. See the Go 1.9.6 milestone on our issue tracker for details.
go1.9.7 (released 2018-06-05) includes fixes to the go command, and the
crypto/x509 and strings packages. In particular, it adds minimal support
to the go command for the vgo transition. See the Go 1.9.7 milestone on
our issue tracker for details.
go1.8 (released 2017-02-16)
Go 1.8 is a major release of Go. Read the Go 1.8 Release Notes for more
information.
Minor revisions
go1.8.1 (released 2017-04-07) includes fixes to the compiler, linker,
runtime, documentation, go command and the crypto/tls, encoding/xml,
image/png, net, net/http, reflect, text/template, and time packages. See
the Go 1.8.1 milestone on our issue tracker for details.
go1.8.2 (released 2017-05-23) includes a security fix to the
crypto/elliptic package. See the Go 1.8.2 milestone on our issue tracker
for details.
go1.8.3 (released 2017-05-24) includes fixes to the compiler, runtime,
documentation, and the database/sql package. See the Go 1.8.3 milestone on
our issue tracker for details.
go1.8.4 (released 2017-10-04) includes two security fixes. It contains the
same fixes as Go 1.9.1 and was released at the same time. See the Go 1.8.4
milestone on our issue tracker for details.
go1.8.5 (released 2017-10-25) includes fixes to the compiler, linker,
runtime, documentation, go command, and the crypto/x509 and net/smtp
packages. It includes a fix to a bug introduced in Go 1.8.4 that broke go
get of non-Git repositories under certain conditions. See the Go 1.8.5
milestone on our issue tracker for details.
go1.8.6 (released 2018-01-22) includes the same fix in math/big as Go
1.9.3 and was released at the same time. See the Go 1.8.6 milestone on our
issue tracker for details.
go1.8.7 (released 2018-02-07) includes a security fix to "go get". It
contains the same fix as Go 1.9.4 and was released at the same time. See
the Go 1.8.7 milestone on our issue tracker for details.
go1.7 (released 2016-08-15)
Go 1.7 is a major release of Go. Read the Go 1.7 Release Notes for more
information.
Minor revisions
go1.7.1 (released 2016-09-07) includes fixes to the compiler, runtime,
documentation, and the compress/flate, hash/crc32, io, net, net/http,
path/filepath, reflect, and syscall packages. See the Go 1.7.1 milestone
on our issue tracker for details.
go1.7.2 should not be used. It was tagged but not fully released. The
release was deferred due to a last minute bug report. Use go1.7.3 instead,
and refer to the summary of changes below.
go1.7.3 (released 2016-10-19) includes fixes to the compiler, runtime, and
the crypto/cipher, crypto/tls, net/http, and strings packages. See the Go
1.7.3 milestone on our issue tracker for details.
go1.7.4 (released 2016-12-01) includes two security fixes. See the Go
1.7.4 milestone on our issue tracker for details.
go1.7.5 (released 2017-01-26) includes fixes to the compiler, runtime, and
the crypto/x509 and time packages. See the Go 1.7.5 milestone on our issue
tracker for details.
go1.7.6 (released 2017-05-23) includes the same security fix as Go 1.8.2
and was released at the same time. See the Go 1.8.2 milestone on our issue
tracker for details.
go1.6 (released 2016-02-17)
Go 1.6 is a major release of Go. Read the Go 1.6 Release Notes for more
information.
Minor revisions
go1.6.1 (released 2016-04-12) includes two security fixes. See the Go
1.6.1 milestone on our issue tracker for details.
go1.6.2 (released 2016-04-20) includes fixes to the compiler, runtime,
tools, documentation, and the mime/multipart, net/http, and sort packages.
See the Go 1.6.2 milestone on our issue tracker for details.
go1.6.3 (released 2016-07-17) includes security fixes to the net/http/cgi
package and net/http package when used in a CGI environment. See the Go
1.6.3 milestone on our issue tracker for details.
go1.6.4 (released 2016-12-01) includes two security fixes. It contains the
same fixes as Go 1.7.4 and was released at the same time. See the Go 1.7.4
milestone on our issue tracker for details.
go1.5 (released 2015-08-19)
Go 1.5 is a major release of Go. Read the Go 1.5 Release Notes for more
information.
Minor revisions
go1.5.1 (released 2015-09-08) includes bug fixes to the compiler,
assembler, and the fmt, net/textproto, net/http, and runtime packages. See
the Go 1.5.1 milestone on our issue tracker for details.
go1.5.2 (released 2015-12-02) includes bug fixes to the compiler, linker,
and the mime/multipart, net, and runtime packages. See the Go 1.5.2
milestone on our issue tracker for details.
go1.5.3 (released 2016-01-13) includes a security fix to the math/big
package affecting the crypto/tls package. See the release announcement for
details.
go1.5.4 (released 2016-04-12) includes two security fixes. It contains the
same fixes as Go 1.6.1 and was released at the same time. See the Go 1.6.1
milestone on our issue tracker for details.
go1.4 (released 2014-12-10)
Go 1.4 is a major release of Go. Read the Go 1.4 Release Notes for more
information.
Minor revisions
go1.4.1 (released 2015-01-15) includes bug fixes to the linker and the
log, syscall, and runtime packages. See the Go 1.4.1 milestone on our
issue tracker for details.
go1.4.2 (released 2015-02-17) includes bug fixes to the go command, the
compiler and linker, and the runtime, syscall, reflect, and math/big
packages. See the Go 1.4.2 milestone on our issue tracker for details.
go1.4.3 (released 2015-09-22) includes security fixes to the net/http
package and bug fixes to the runtime package. See the Go 1.4.3 milestone
on our issue tracker for details.
go1.3 (released 2014-06-18)
Go 1.3 is a major release of Go. Read the Go 1.3 Release Notes for more
information.
Minor revisions
go1.3.1 (released 2014-08-13) includes bug fixes to the compiler and the
runtime, net, and crypto/rsa packages. See the change history for details.
go1.3.2 (released 2014-09-25) includes bug fixes to cgo and the crypto/tls
packages. See the change history for details.
go1.3.3 (released 2014-09-30) includes further bug fixes to cgo, the
runtime package, and the nacl port. See the change history for details.
go1.2 (released 2013-12-01)
Go 1.2 is a major release of Go. Read the Go 1.2 Release Notes for more
information.
Minor revisions
go1.2.1 (released 2014-03-02) includes bug fixes to the runtime, net, and
database/sql packages. See the change history for details.
go1.2.2 (released 2014-05-05) includes a security fix that affects the
tour binary included in the binary distributions (thanks to Guillaume T).
go1.1 (released 2013-05-13)
Go 1.1 is a major release of Go. Read the Go 1.1 Release Notes for more
information.
Minor revisions
go1.1.1 (released 2013-06-13) includes several compiler and runtime bug
fixes. See the change history for details.
go1.1.2 (released 2013-08-13) includes fixes to the gc compiler and cgo,
and the bufio, runtime, syscall, and time packages. See the change history
for details. If you use package syscall's Getrlimit and Setrlimit
functions under Linux on the ARM or 386 architectures, please note change
11803043 that fixes issue 5949.
go1 (released 2012-03-28)
Go 1 is a major release of Go that will be stable in the long term. Read
the Go 1 Release Notes for more information.
It is intended that programs written for Go 1 will continue to compile and
run correctly, unchanged, under future versions of Go 1. Read the Go 1
compatibility document for more about the future of Go 1.
The go1 release corresponds to weekly.2012-03-27.
Minor revisions
go1.0.1 (released 2012-04-25) was issued to fix an escape analysis bug
that can lead to memory corruption. It also includes several minor code
and documentation fixes.
go1.0.2 (released 2012-06-13) was issued to fix two bugs in the
implementation of maps using struct or array keys: issue 3695 and issue
3573. It also includes many minor code and documentation fixes.
go1.0.3 (released 2012-09-21) includes minor code and documentation fixes.
See the go1 release branch history for the complete list of changes.
Older releases
See the Pre-Go 1 Release History page for notes on earlier releases.
Why Go Use Cases Case Studies
Get Started Playground Tour Stack Overflow Help
Packages Standard Library
About Download Blog Issue Tracker Release Notes Brand Guidelines Code of
Conduct
Connect Twitter GitHub Slack r/golang Meetup Golang Weekly
The Go Gopher
* Copyright
* Terms of Service
* Privacy Policy
* Report an Issue
* System theme Dark theme Light theme
Google logo