Skip to content

Commit e1eb430

Browse files
authored
Merge pull request #1168 from junpataleta/fix500intro
Fix the intro page for the 5.0 dev docs
2 parents 103c07c + 66b621c commit e1eb430

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

docs/intro.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
id: introduction
33
title: Introduction
4-
description: Developer documentation for Moodle 4.5.
4+
description: Developer documentation for Moodle 5.0.
55
slug: /
66
tags:
77
- Getting started
88
---
99

10-
Welcome to the Developer Documentation for **Moodle 4.5**.
10+
Welcome to the Developer Documentation for **Moodle 5.0**.
1111

1212
This documentation is version-specific and includes a range of useful guides and information.
1313

@@ -17,10 +17,10 @@ This documentation is version-specific and includes a range of useful guides and
1717
- Look through our [guides to Moodle APIs](./apis.md)
1818
- Browse our [Moodle feature](./guides.md) deep dives
1919
- Interested in supporting the Moodle App in your plugins? Read the [Moodle App documentation](/general/app)
20-
{/*- You may want to read the [Release notes](/general/releases/4.5) for Moodle 4.5 */}
20+
{/*- You may want to read the [Release notes](/general/releases/5.0) for Moodle 5.0 */}
2121

2222
:::
2323

2424
import ReleaseStateSummary from '@site/src/components/ReleaseStateSummary';
2525

26-
<ReleaseStateSummary releaseName="4.5" />
26+
<ReleaseStateSummary releaseName="5.0" />

general/documentation/forking-versions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Typically this task is performed by the Integration team using the following ste
3232
1. Uncomment and update the link to the release notes for this version
3333
1. Open `docs/devupdate.md` in your editor
3434
1. Clear the content of this file and update the version numbers
35+
1. Open `docs/intro.md` in your editor
36+
1. Update the occurrences of the version number for the recent release with the version number for the next major version of Moodle
3537
1. Open `nextVersion.js` in your editor
3638
1. Update the values for `nextVersion` (and `nextLTSVersion` after the release of an LTS version)
3739
1. Commit these changes ([Example from Moodle 4.4](https://github.com/moodle/devdocs/commit/XXaeb6385209caed38d757d53bc47f9bd66fdcfa0cY))

src/components/ReleaseStateSummary/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function futureRelease({ releaseData }: majorVersionData): JSX.Element {
105105
, which
106106
{' '}
107107
{releaseData.isLTS && <strong>will be an LTS release</strong>}
108-
{!releaseData.isLTS && <strong>will not an LTS release</strong>}
108+
{!releaseData.isLTS && <strong>will not be an LTS release</strong>}
109109
, is scheduled for release on
110110
{' '}
111111
<strong>

0 commit comments

Comments
 (0)