]> Cypherpunks repositories - gostls13.git/commitdiff
doc/initial, doc/next: add draft notice to introduction
authorDmitri Shuralyov <dmitshur@golang.org>
Wed, 22 May 2024 15:40:09 +0000 (11:40 -0400)
committerGopher Robot <gobot@golang.org>
Wed, 22 May 2024 18:25:26 +0000 (18:25 +0000)
Go release notes always start out as a draft with a clear notice.
That notice is removed when the final release (go1.N.0) is made.
For example, the last time was in CL 562255.

Add this to the Go 1.23 draft and to the future fragment template.

Also switch to the main pkg.go.dev instance and use a relative issue
link in 3-tools.md while here.

For #64169.
For #65614.

Change-Id: I16bc0fa8a3a43ee7a9edd7fa253999041f1892e2
Reviewed-on: https://go-review.googlesource.com/c/go/+/587415
Reviewed-by: Jonathan Amsterdam <jba@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
TryBot-Bypass: Dmitri Shuralyov <dmitshur@golang.org>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>

doc/initial/1-intro.md
doc/next/1-intro.md
doc/next/3-tools.md

index e28191ca9e22032a32e9e2a10d6d555f4afb11c9..8c9948ddf607ae13627470f4f3fc3a1ae68537d6 100644 (file)
@@ -8,5 +8,7 @@ set fixed-width phrases with non-fixed-width spaces, as in
   main ul li { margin: 0.5em 0; }
 </style>
 
-## Introduction to Go 1.XX {#introduction}
+## DRAFT RELEASE NOTES — Introduction to Go 1.N {#introduction}
 
+**Go 1.N is not yet released. These are work-in-progress release notes.
+Go 1.N is expected to be released in {Month} {Year}.**
index 639550f92a450b7f0cfa25a4bf19ec0ddcd39d8d..585c6c8e52c32e3fb032972574bf2a596e3239d3 100644 (file)
@@ -8,5 +8,7 @@ set fixed-width phrases with non-fixed-width spaces, as in
   main ul li { margin: 0.5em 0; }
 </style>
 
-## Introduction to Go 1.23 {#introduction}
+## DRAFT RELEASE NOTES — Introduction to Go 1.23 {#introduction}
 
+**Go 1.23 is not yet released. These are work-in-progress release notes.
+Go 1.23 is expected to be released in August 2024.**
index 4112fb61ac831683d133f818f2fd77cdbb65249a..434a6273fbb50f0298fba92d81a55db4c93019c5 100644 (file)
@@ -3,7 +3,7 @@
 ### Go command {#go-command}
 
 Setting the `GOROOT_FINAL` environment variable no longer has an effect
-([#62047](https://go.dev/issue/62047)).
+([#62047](/issue/62047)).
 Distributions that install the `go` command to a location other than
 `$GOROOT/bin/go` should install a symlink instead of relocating
 or copying the `go` binary.
@@ -15,7 +15,7 @@ that would be obtained in an empty environment with no prior uses of the `-w` fl
 ### Vet {#vet}
 
 The `go vet` subcommand now includes the
-[stdversion](https://beta.pkg.go.dev/golang.org/x/tools/go/analysis/passes/stdversion)
+[stdversion](https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/stdversion)
 analyzer, which flags references to symbols that are too new for the version
 of Go in effect in the referring file. (The effective version is determined
 by the `go` directive in the file's enclosing `go.mod` file, and