0
0
mirror of https://gitea.com/gitea/docs.git synced 2025-06-16 10:01:43 +00:00

Upgrade to 1.21.2

This commit is contained in:
Lunny Xiao
2023-12-13 18:24:51 +08:00
parent 0cdda9a463
commit 532b5504e5
2 changed files with 4 additions and 4 deletions

@ -108,7 +108,7 @@ const config = {
banner: 'unreleased',
},
'1.21': {
label: '1.21.1',
label: '1.21.2',
},
'1.20': {
label: '1.20.6'
@ -198,7 +198,7 @@ const config = {
position: 'right',
items: [
{to: '/api/next/', label: '1.22-dev' },
{to: '/api/1.21/', label: '1.21.1' },
{to: '/api/1.21/', label: '1.21.2' },
{to: '/api/1.20/', label: '1.20.6' },
{to: '/api/1.19/', label: '1.19.4' },
],

@ -29,7 +29,7 @@ if [ "$version" == "1.19" ]; then
elif [ "$version" == "1.20" ]; then
minorVer="1.20.6"
elif [ "$version" == "1.21" ]; then
minorVer="1.21.1"
minorVer="1.21.2"
fi
docs_dir="versioned_docs/version-$version"
@ -56,7 +56,7 @@ SED_INPLACE "s/@minGoVersion@/$minGoVer/" "$docs_dir/installation/from-source.$l
if [ "$version" == "latest" ]; then
SED_INPLACE 's/"version": "{{AppVer | JSEscape | Safe}}"/"version": "1.22-dev"/' static/swagger-latest.json
elif [ "$version" == "1.21" ]; then
SED_INPLACE 's/"version": "{{AppVer | JSEscape | Safe}}"/"version": "1.21.1"/' static/swagger-21.json
SED_INPLACE 's/"version": "{{AppVer | JSEscape | Safe}}"/"version": "1.21.2"/' static/swagger-21.json
elif [ "$version" == "1.20" ]; then
SED_INPLACE 's/"version": "{{AppVer | JSEscape | Safe}}"/"version": "1.20.6"/' static/swagger-20.json
elif [ "$version" == "1.19" ]; then