• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

READMED25-Apr-20251.2 KiB2720

except.txtD25-Apr-202534.8 KiB605604

go1.1.txtD25-Apr-20252.6 MiB50,45550,454

go1.10.txtD25-Apr-202530.1 KiB628627

go1.11.txtD25-Apr-202525 KiB560559

go1.12.txtD25-Apr-202513.5 KiB229228

go1.13.txtD25-Apr-2025452.6 KiB8,0338,032

go1.14.txtD25-Apr-2025508.9 KiB8,9158,914

go1.15.txtD25-Apr-20257.6 KiB131130

go1.16.txtD25-Apr-2025479.2 KiB8,5288,527

go1.17.txtD25-Apr-202518 KiB304303

go1.18.txtD25-Apr-202513 KiB254253

go1.19.txtD25-Apr-202517.9 KiB310309

go1.2.txtD25-Apr-20251.9 MiB32,48532,484

go1.20.txtD25-Apr-2025602.6 KiB9,1669,165

go1.21.txtD25-Apr-202525.6 KiB427426

go1.22.txtD25-Apr-20257.7 KiB136135

go1.23.txtD25-Apr-202510.1 KiB159158

go1.3.txtD25-Apr-2025117 KiB2,0542,053

go1.4.txtD25-Apr-202534 KiB605565

go1.5.txtD25-Apr-202546.6 KiB976975

go1.6.txtD25-Apr-202512.9 KiB276275

go1.7.txtD25-Apr-202513.6 KiB286285

go1.8.txtD25-Apr-202516.3 KiB262261

go1.9.txtD25-Apr-202510.7 KiB197196

go1.txtD25-Apr-20251.7 MiB30,87230,871

README

1Files in this directory are data for Go's API checker ("go tool api", in src/cmd/api).
2
3Each file is a list of API features, one per line.
4
5go1.txt (and similarly named files) are frozen once a version has been
6shipped. Each file adds new lines but does not remove any.
7
8except.txt lists features that may disappear without breaking true
9compatibility.
10
11Starting with go1.19.txt, each API feature line must end in "#nnnnn"
12giving the GitHub issue number of the proposal issue that accepted
13the new API. This helps with our end-of-cycle audit of new APIs.
14The same requirement applies to next/* (described below), which will
15become a go1.XX.txt for XX >= 19.
16
17The next/ directory contains the only files intended to be mutated.
18Each file in that directory contains a list of features that may be added
19to the next release of Go. The files in this directory only affect the
20warning output from the go api tool. Each file should be named
21nnnnn.txt, after the issue number for the accepted proposal.
22(The #nnnnn suffix must also appear at the end of each line in the file;
23that will be preserved when next/*.txt is concatenated into go1.XX.txt.)
24
25When you add a file to the api/next directory, you must add at least one file
26under doc/next. See doc/README.md for details.
27