This is an automated email from the ASF dual-hosted git repository.
liuyu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git
The following commit(s) were added to refs/heads/main by this push:
new 78343a7a9c1 [improve][doc] Restructure releases docs (#431)
78343a7a9c1 is described below
commit 78343a7a9c1a9d1bb4f7b0db5dcbda7d257540b7
Author: tison <[email protected]>
AuthorDate: Wed Feb 22 10:27:18 2023 +0800
[improve][doc] Restructure releases docs (#431)
---
contribute/release-process.md | 4 ++--
contribute/validate-release-candidate.md | 2 +-
sidebarsDevelopment.js | 12 +++++++++---
3 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/contribute/release-process.md b/contribute/release-process.md
index cf02d6df9ae..be1635add9b 100644
--- a/contribute/release-process.md
+++ b/contribute/release-process.md
@@ -147,7 +147,7 @@ If you get error `c++: internal compiler error: Killed
(program cc1plus)` when r
:::caution
-The C++ client is now developing in a [separated
repo](https://github.com/apache/pulsar-client-cpp). You should check its own
[release
guide](https://github.com/apache/pulsar-client-cpp/wiki/Committer-Release-Guide)
if you're releasing version >= 3.0.0.
+The C++ client is now developing in a [separated
repo](https://github.com/apache/pulsar-client-cpp). You should check its own
[release
guide](https://github.com/apache/pulsar-client-cpp/wiki/Committer-Release-Guide)
if you're releasing version >= 3.0.0.
:::
@@ -464,7 +464,7 @@ poetry install
poetry run bin/java-apidoc-generator.py 2.X.0
```
-Once the docs are generated, you can add them and submit them in a PR. The
expected doc output is:
+Once the docs are generated, you can add them and submit them in a PR. The
expected doc output is:
* `static/api/admin`
* `static/api/client`
diff --git a/contribute/validate-release-candidate.md
b/contribute/validate-release-candidate.md
index a81d7b6df2d..1b58e29bcad 100644
--- a/contribute/validate-release-candidate.md
+++ b/contribute/validate-release-candidate.md
@@ -3,7 +3,7 @@ id: validate-release-candidate
title: Verifying release candidates
---
-The following are manual instructions for reviewing and validating a release
candidate.
+This page contains manual instructions for reviewing and verifying a release
candidate.
## Validate the binary distribution
diff --git a/sidebarsDevelopment.js b/sidebarsDevelopment.js
index 4a994137239..99fb7f3d93f 100644
--- a/sidebarsDevelopment.js
+++ b/sidebarsDevelopment.js
@@ -48,10 +48,16 @@ const sidebars = {
type: "category",
label: "Releases",
items: [
- 'create-gpg-keys',
+ {
+ type: "category",
+ label: 'Release process',
+ link: {type: 'doc', id: 'release-process'},
+ items: [
+ 'create-gpg-keys',
+ 'release-note-guide',
+ ]
+ },
'validate-release-candidate',
- 'release-process',
- 'release-note-guide',
'version-policy',
]
},