3 ###############################################################################
4 # (A) Update `FORMULA` with `${nextRelease.version}`
5 ###############################################################################
6 sed -i -e "s_^\(version:\).*_\1 ${1}_" FORMULA
9 ###############################################################################
10 # (B) Use `m2r` to convert automatically produced `.md` docs to `.rst`
11 ###############################################################################
14 sudo -H pip install m2r
16 # Copy and then convert the `.md` docs
19 m2r --overwrite ./*.md
21 # Change excess `H1` headings to `H2` in converted `CHANGELOG.rst`
22 sed -i -e '/^=.*$/s/=/-/g' CHANGELOG.rst
23 sed -i -e '1,4s/-/=/g' CHANGELOG.rst
25 # Use for debugging output, when required
29 # Return back to the main directory