@@ -10,17 +10,28 @@ mkdir -p deploy/js
10
10
11
11
cd scripts/md2html
12
12
mkdir -p history
13
- git show c740e950d:MAINTAINERS.md > history/MAINTAINERS_v2.0.md
13
+ cat > history/MAINTAINERS_v2.0.md << EOF
14
+ ## Active
15
+ * Jeremy Whitlock [@whitlockjc](https://github.com/whitlockjc)
16
+ * Marsh Gardiner [@earth2marsh](https://github.com/earth2marsh)
17
+ * Ron Ratovsky [@webron](https://github.com/webron)
18
+ * Tony Tam [@fehguy](https://github.com/fehguy)
19
+ EOF
20
+ cp history/MAINTAINERS_v2.0.md history/MAINTAINERS_v3.0.0.md
21
+ git show c740e95:MAINTAINERS.md > history/MAINTAINERS_v3.0.1.md
22
+ git show 3140640:MAINTAINERS.md > history/MAINTAINERS_v3.0.2.md
23
+ cp history/MAINTAINERS_v3.0.2.md history/MAINTAINERS_v3.0.3.md
24
+ cp history/MAINTAINERS_v3.0.2.md history/MAINTAINERS_v3.1.0.md
25
+ # add lines for 3.0.4, 3.1.1, ...
26
+
14
27
cp -p js/* ../../deploy/js 2> /dev/null
15
28
cp -p markdown/* ../../deploy/ 2> /dev/null
16
29
17
- node md2html.js --respec --maintainers ./history/MAINTAINERS_v2.0.md ../../versions/2.0.md > ../../deploy/oas/v2.0.html
18
-
19
30
latest=` git describe --abbrev=0 --tags`
20
31
latestCopied=none
21
- for filename in ../../versions/[3456789 ].* .md ; do
32
+ for filename in ../../versions/[23456789 ].* .md ; do
22
33
version=$( basename " $filename " .md)
23
- node md2html.js --respec --maintainers ../../MAINTAINERS .md ${filename} > ../../deploy/oas/v$version .html
34
+ node md2html.js --respec --maintainers ./history/MAINTAINERS_v $version .md ${filename} > ../../deploy/oas/v$version .html
24
35
if [ $version = $latest ]; then
25
36
if [[ ${version} != * " rc" * ]]; then
26
37
# version is not a Release Candidate
0 commit comments