Versions Compared

Key

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

...

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

To the following:

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 eg https://github.com/hyperledger/besu-docs/pull/1382 

...