Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To release the documentation, first run the following command to create a new doc version:

NOTE if it's the first time, you will need to run yarn  to install docusaurus

Code Block
languagebash
npm run docusaurus docs:version <VERSION-NUMBER>

In Then, in docusaurus.config.js , under presets > classic > docs:

...

Code Block
languagejs
titledocusaurus.config.js (after)
lastVersion: "23.4.2",
versions: {
  current: {
    label: "development",
    path: "development",
    banner: "unreleased",
  },
  "23.4.2": {
    label: "stable (23.4.2)",
    path: "stable",
    banner: "none",
  },
  "23.4.1": {
    label: "23.4.1",
    path: "23.4.1",
    banner: "unmaintained",
  },
  "23.4.0": {
    label: "23.4.0",
    path: "23.4.0",
    banner: "unmaintained",
  },
},

commit your changes and push a PR to the besu-docs repo