- Make sure
phpBB/docs/CREDTIS.txt
is up to date - Make sure Contributors have their ranks
- Make sure all reports in the security tracker are closed or invalid
- Go through Issues fixed in 3.1.6 and correct any unreadable descriptions
- Check the feature hightlights wiki page for completeness
- Branch of
prep-release-3.1.6
from 3.1.x:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env bash | |
# requires nvm installed from AUR (i.e. only tested on Arch), and also jq | |
# run from the project directory like: runWithNodeAndNpm.sh make dev-setup | |
# the package.json is taken from the current working directory | |
NODE_MAJOR_VERSION=$(cat package.json | jq .engines.node | grep -oE '[0-9]*' | head -1) | |
NPM_MAJOR_VERSION=$(cat package.json | jq .engines.npm | grep -oE '[0-9]*' | head -1) | |
source /usr/share/nvm/init-nvm.sh | |
nvm install ${NODE_MAJOR_VERSION} && \ |