Skip to content

Commit e8c5bed

Browse files
dmitshurgopherbot
authored andcommitted
doc: initialize next directory for Go 1.24
Following the "For the release team" steps in README: cd doc cp -R initial/ next $EDITOR next/1-intro.md Dropped '*' from the cp -R command to avoid needing to create an empty next directory with a separate command. For #68545. For #67586. Change-Id: I25215bc35a043e0f26d4a86ffe66eb3c26348fef Reviewed-on: https://go-review.googlesource.com/c/go/+/600177 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com>
1 parent c622f5c commit e8c5bed

File tree

10 files changed

+40
-1
lines changed

10 files changed

+40
-1
lines changed

doc/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ To begin the next release development cycle, populate the contents of `next`
7070
with those of `initial`. From the repo root:
7171

7272
> cd doc
73-
> cp -r initial/* next
73+
> cp -R initial/ next
7474

7575
Then edit `next/1-intro.md` to refer to the next version.

doc/next/1-intro.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!--
2+
NOTE: In this document and others in this directory, the convention is to
3+
set fixed-width phrases with non-fixed-width spaces, as in
4+
`hello` `world`.
5+
-->
6+
7+
<style>
8+
main ul li { margin: 0.5em 0; }
9+
</style>
10+
11+
## DRAFT RELEASE NOTES — Introduction to Go 1.24 {#introduction}
12+
13+
**Go 1.24 is not yet released. These are work-in-progress release notes.
14+
Go 1.24 is expected to be released in February 2025.**

doc/next/2-language.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Changes to the language {#language}
2+
3+

doc/next/3-tools.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## Tools {#tools}
2+
3+
### Go command {#go-command}
4+
5+
### Cgo {#cgo}
6+

doc/next/4-runtime.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
## Runtime {#runtime}

doc/next/5-toolchain.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Compiler {#compiler}
2+
3+
## Assembler {#assembler}
4+
5+
## Linker {#linker}
6+
7+

doc/next/6-stdlib/0-heading.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## Standard library {#library}
2+
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### Minor changes to the library {#minor_library_changes}
2+
3+

doc/next/6-stdlib/99-minor/README

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
API changes and other small changes to the standard library go here.

doc/next/7-ports.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## Ports {#ports}
2+

0 commit comments

Comments
 (0)