1 | #!/usr/bin/env bash
|
2 | #
|
3 | # Usage:
|
4 | # ./release-version.sh <function name>
|
5 |
|
6 | set -o nounset
|
7 | set -o pipefail
|
8 | set -o errexit
|
9 |
|
10 | source test/common.sh # html-head
|
11 |
|
12 | # NOTE: Left to right evaluation would be nice on this!
|
13 | #
|
14 | # Rewrite in YSH:
|
15 | #
|
16 | # sys.stdin.read() | sub( / "\x00" { any* } "\x01" /, html_escape) | write
|
17 | escape-segments() {
|
18 | python -c '
|
19 | import cgi, re, sys
|
20 |
|
21 | print re.sub(
|
22 | r"\x00(.*)\x01",
|
23 | lambda match: cgi.escape(match.group(1)),
|
24 | sys.stdin.read())
|
25 | '
|
26 | }
|
27 |
|
28 | # TODO: It would be nice to have a column of bugs fixed / addressed!
|
29 |
|
30 | _git-changelog-body() {
|
31 | local prev_branch=$1
|
32 | local cur_branch=$2
|
33 | shift 2
|
34 |
|
35 | # - a trick for HTML escaping (avoid XSS): surround %s with unlikely bytes,
|
36 | # \x00 and \x01. Then pipe Python to escape.
|
37 | # --reverse makes it go in forward chronlogical order.
|
38 |
|
39 | # %x00 generates the byte \x00
|
40 | local format='<tr>
|
41 | <td><a class="checksum"
|
42 | href="https://github.com/oilshell/oil/commit/%H">%h</a>
|
43 | </td>
|
44 | <td class="date">%ad</td>
|
45 | <td>%x00%an%x01</td>
|
46 | <td class="subject">%x00%s%x01</td>
|
47 | </tr>'
|
48 | git log \
|
49 | $prev_branch..$cur_branch \
|
50 | --reverse \
|
51 | --pretty="format:$format" \
|
52 | --date=short \
|
53 | "$@" \
|
54 | | escape-segments
|
55 | }
|
56 |
|
57 | _git-changelog-header() {
|
58 | local prev_branch=$1
|
59 | local cur_branch=$2
|
60 |
|
61 | html-head --title "Commits Between Branches $prev_branch and $cur_branch" \
|
62 | 'web/base.css' 'web/changelog.css'
|
63 |
|
64 | cat <<EOF
|
65 | <body class="width60">
|
66 | <h3>Commits Between Branches <code>$prev_branch</code> and
|
67 | <code>$cur_branch</code></h3>
|
68 | <table>
|
69 | <colgroup>
|
70 | <col>
|
71 | <col>
|
72 | <col>
|
73 | <!-- prevent long commits from causing wrapping in other cells -->
|
74 | <col style="width: 40em">
|
75 | </colgroup>
|
76 | EOF
|
77 | # Doesn't seem necessary now.
|
78 | # <thead>
|
79 | # <tr>
|
80 | # <td>Commit</td>
|
81 | # <td>Date</td>
|
82 | # <td>Description</td>
|
83 | # </tr>
|
84 | # </thead>
|
85 | }
|
86 |
|
87 | _git-changelog() {
|
88 | _git-changelog-header "$@"
|
89 | _git-changelog-body "$@"
|
90 | cat <<EOF
|
91 | </table>
|
92 | </body>
|
93 | </html>
|
94 | EOF
|
95 | }
|
96 |
|
97 | git-changelog-0.1() {
|
98 | local version='0.1.0'
|
99 | _git-changelog release/0.0.0 release/0.1.0 \
|
100 | > ../oilshell.org__deploy/release/$version/changelog.html
|
101 | }
|
102 |
|
103 | git-changelog-0.2.alpha1() {
|
104 | _git-changelog release/0.1.0 release/0.2.alpha1 \
|
105 | > _release/VERSION/changelog.html
|
106 | }
|
107 |
|
108 | git-changelog-0.2.0() {
|
109 | _git-changelog release/0.1.0 release/0.2.0 \
|
110 | > _release/VERSION/changelog.html
|
111 | }
|
112 |
|
113 | git-changelog-0.3.alpha1() {
|
114 | _git-changelog release/0.2.0 release/0.3.alpha1 \
|
115 | > _release/VERSION/changelog.html
|
116 | }
|
117 |
|
118 | git-changelog-0.3.0() {
|
119 | _git-changelog release/0.2.0 release/0.3.0 \
|
120 | > _release/VERSION/changelog.html
|
121 | }
|
122 |
|
123 | git-changelog-0.4.0() {
|
124 | _git-changelog release/0.3.0 release/0.4.0 \
|
125 | > _release/VERSION/changelog.html
|
126 | }
|
127 |
|
128 | git-changelog-0.5.alpha1() {
|
129 | _git-changelog release/0.4.0 release/0.5.alpha1 \
|
130 | > _release/VERSION/changelog.html
|
131 | }
|
132 |
|
133 | # Alpha release logs are relative to last minor release
|
134 | git-changelog-0.5.alpha2() {
|
135 | _git-changelog release/0.5.alpha1 release/0.5.alpha2 \
|
136 | > _release/VERSION/changelog.html
|
137 | }
|
138 |
|
139 | git-changelog-0.5.alpha3() {
|
140 | _git-changelog release/0.5.alpha2 release/0.5.alpha3 \
|
141 | > _release/VERSION/changelog.html
|
142 | }
|
143 |
|
144 | # Hm if you're not releasing on the same machine as the previous release, the
|
145 | # branch needs origin/ on the front? Is this the best way to do it?
|
146 | # NOTE: 'git branch -a' shows all branches.
|
147 |
|
148 | git-changelog-0.5.0() {
|
149 | # NOTE: release/0.5 branch should be sync'd up with master squashes.
|
150 | _git-changelog origin/release/0.5.alpha3 release/0.5.0 \
|
151 | > _release/VERSION/changelog.html
|
152 | }
|
153 |
|
154 | git-changelog-0.6.pre1() {
|
155 | _git-changelog origin/release/0.5.0 release/0.6.pre1 \
|
156 | > _release/VERSION/changelog.html
|
157 | }
|
158 |
|
159 | git-changelog-0.6.pre2() {
|
160 | _git-changelog origin/release/0.6.pre1 release/0.6.pre2 \
|
161 | > _release/VERSION/changelog.html
|
162 | }
|
163 |
|
164 | git-changelog-0.6.pre3() {
|
165 | _git-changelog origin/release/0.6.pre2 release/0.6.pre3 \
|
166 | > _release/VERSION/changelog.html
|
167 | }
|
168 |
|
169 | git-changelog-0.6.pre4() {
|
170 | _git-changelog origin/release/0.6.pre3 release/0.6.pre4 \
|
171 | > _release/VERSION/changelog.html
|
172 | }
|
173 |
|
174 | git-changelog-0.6.pre5() {
|
175 | _git-changelog origin/release/0.6.pre4 release/0.6.pre5 \
|
176 | > _release/VERSION/changelog.html
|
177 | }
|
178 |
|
179 | git-changelog-0.6.pre6() {
|
180 | _git-changelog origin/release/0.6.pre5 release/0.6.pre6 \
|
181 | > _release/VERSION/changelog.html
|
182 | }
|
183 |
|
184 | git-changelog-0.6.pre7() {
|
185 | _git-changelog origin/release/0.6.pre6 release/0.6.pre7 \
|
186 | > _release/VERSION/changelog.html
|
187 | }
|
188 |
|
189 | git-changelog-0.6.pre8() {
|
190 | _git-changelog origin/release/0.6.pre7 release/0.6.pre8 \
|
191 | > _release/VERSION/changelog.html
|
192 | }
|
193 |
|
194 | git-changelog-0.6.pre9() {
|
195 | _git-changelog origin/release/0.6.pre8 release/0.6.pre9 \
|
196 | > _release/VERSION/changelog.html
|
197 | }
|
198 |
|
199 | git-changelog-0.6.pre10() {
|
200 | _git-changelog origin/release/0.6.pre9 release/0.6.pre10 \
|
201 | > _release/VERSION/changelog.html
|
202 | }
|
203 |
|
204 | git-changelog-0.6.pre11() {
|
205 | _git-changelog origin/release/0.6.pre10 release/0.6.pre11 \
|
206 | > _release/VERSION/changelog.html
|
207 | }
|
208 |
|
209 | git-changelog-0.6.pre12() {
|
210 | _git-changelog origin/release/0.6.pre11 release/0.6.pre12 \
|
211 | > _release/VERSION/changelog.html
|
212 | }
|
213 |
|
214 | git-changelog-0.6.pre13() {
|
215 | _git-changelog origin/release/0.6.pre12 release/0.6.pre13 \
|
216 | > _release/VERSION/changelog.html
|
217 | }
|
218 |
|
219 | git-changelog-0.6.pre14() {
|
220 | _git-changelog origin/release/0.6.pre13 release/0.6.pre14 \
|
221 | > _release/VERSION/changelog.html
|
222 | }
|
223 |
|
224 | git-changelog-0.6.pre15() {
|
225 | _git-changelog origin/release/0.6.pre14 release/0.6.pre15 \
|
226 | > _release/VERSION/changelog.html
|
227 | }
|
228 |
|
229 | git-changelog-0.6.pre16() {
|
230 | _git-changelog origin/release/0.6.pre15 release/0.6.pre16 \
|
231 | > _release/VERSION/changelog.html
|
232 | }
|
233 |
|
234 | git-changelog-0.6.pre17() {
|
235 | _git-changelog origin/release/0.6.pre16 release/0.6.pre17 \
|
236 | > _release/VERSION/changelog.html
|
237 | }
|
238 |
|
239 | git-changelog-0.6.pre18() {
|
240 | _git-changelog origin/release/0.6.pre17 release/0.6.pre18 \
|
241 | > _release/VERSION/changelog.html
|
242 | }
|
243 |
|
244 | git-changelog-0.6.pre19() {
|
245 | _git-changelog origin/release/0.6.pre18 release/0.6.pre19 \
|
246 | > _release/VERSION/changelog.html
|
247 | }
|
248 |
|
249 | git-changelog-0.6.pre20() {
|
250 | _git-changelog origin/release/0.6.pre19 release/0.6.pre20 \
|
251 | > _release/VERSION/changelog.html
|
252 | }
|
253 |
|
254 | git-changelog-0.6.pre21() {
|
255 | _git-changelog origin/release/0.6.pre20 release/0.6.pre21 \
|
256 | > _release/VERSION/changelog.html
|
257 | }
|
258 |
|
259 | git-changelog-0.6.pre22() {
|
260 | _git-changelog origin/release/0.6.pre21 release/0.6.pre22 \
|
261 | > _release/VERSION/changelog.html
|
262 | }
|
263 |
|
264 | git-changelog-0.6.pre23() {
|
265 | _git-changelog origin/release/0.6.pre22 release/0.6.pre23 \
|
266 | > _release/VERSION/changelog.html
|
267 | }
|
268 |
|
269 | git-changelog-0.6.0() {
|
270 | _git-changelog origin/release/0.6.pre23 release/0.6.0 \
|
271 | > _release/VERSION/changelog.html
|
272 | }
|
273 |
|
274 | git-changelog-0.7.pre1() {
|
275 | _git-changelog origin/release/0.6.0 release/0.7.pre1 \
|
276 | > _release/VERSION/changelog.html
|
277 | }
|
278 |
|
279 | git-changelog-0.7.pre2() {
|
280 | _git-changelog origin/release/0.7.pre1 release/0.7.pre2 \
|
281 | > _release/VERSION/changelog.html
|
282 | }
|
283 |
|
284 | git-changelog-0.7.pre3() {
|
285 | _git-changelog origin/release/0.7.pre2 release/0.7.pre3 \
|
286 | > _release/VERSION/changelog.html
|
287 | }
|
288 |
|
289 | git-changelog-0.7.pre4() {
|
290 | _git-changelog origin/release/0.7.pre3 release/0.7.pre4 \
|
291 | > _release/VERSION/changelog.html
|
292 | }
|
293 |
|
294 | git-changelog-0.7.pre5() {
|
295 | _git-changelog origin/release/0.7.pre4 release/0.7.pre5 \
|
296 | > _release/VERSION/changelog.html
|
297 | }
|
298 |
|
299 | git-changelog-0.7.pre6() {
|
300 | _git-changelog origin/release/0.7.pre5 release/0.7.pre6 \
|
301 | > _release/VERSION/changelog.html
|
302 | }
|
303 |
|
304 | git-changelog-0.7.pre7() {
|
305 | _git-changelog origin/release/0.7.pre6 release/0.7.pre7 \
|
306 | > _release/VERSION/changelog.html
|
307 | }
|
308 |
|
309 | git-changelog-0.7.pre8() {
|
310 | _git-changelog origin/release/0.7.pre7 release/0.7.pre8 \
|
311 | > _release/VERSION/changelog.html
|
312 | }
|
313 |
|
314 | git-changelog-0.7.pre9() {
|
315 | _git-changelog origin/release/0.7.pre8 release/0.7.pre9 \
|
316 | > _release/VERSION/changelog.html
|
317 | }
|
318 |
|
319 | git-changelog-0.7.pre10() {
|
320 | _git-changelog origin/release/0.7.pre9 release/0.7.pre10 \
|
321 | > _release/VERSION/changelog.html
|
322 | }
|
323 |
|
324 | git-changelog-0.7.pre11() {
|
325 | _git-changelog origin/release/0.7.pre10 release/0.7.pre11 \
|
326 | > _release/VERSION/changelog.html
|
327 | }
|
328 |
|
329 | git-changelog-0.7.0() {
|
330 | _git-changelog origin/release/0.7.pre11 release/0.7.0 \
|
331 | > _release/VERSION/changelog.html
|
332 | }
|
333 |
|
334 | git-changelog-0.8.pre1() {
|
335 | _git-changelog origin/release/0.7.0 release/0.8.pre1 \
|
336 | > _release/VERSION/changelog.html
|
337 | }
|
338 |
|
339 | git-changelog-0.8.pre2() {
|
340 | _git-changelog origin/release/0.8.pre1 release/0.8.pre2 \
|
341 | > _release/VERSION/changelog.html
|
342 | }
|
343 |
|
344 | git-changelog-0.8.pre3() {
|
345 | _git-changelog origin/release/0.8.pre2 release/0.8.pre3 \
|
346 | > _release/VERSION/changelog.html
|
347 | }
|
348 |
|
349 | git-changelog-0.8.pre4() {
|
350 | _git-changelog origin/release/0.8.pre3 release/0.8.pre4 \
|
351 | > _release/VERSION/changelog.html
|
352 | }
|
353 |
|
354 | git-changelog-0.8.pre5() {
|
355 | _git-changelog origin/release/0.8.pre4 release/0.8.pre5 \
|
356 | > _release/VERSION/changelog.html
|
357 | }
|
358 |
|
359 | git-changelog-0.8.pre6() {
|
360 | _git-changelog origin/release/0.8.pre5 release/0.8.pre6 \
|
361 | > _release/VERSION/changelog.html
|
362 | }
|
363 |
|
364 | git-changelog-0.8.pre7() {
|
365 | _git-changelog origin/release/0.8.pre6 release/0.8.pre7 \
|
366 | > _release/VERSION/changelog.html
|
367 | }
|
368 |
|
369 | git-changelog-0.8.pre8() {
|
370 | _git-changelog origin/release/0.8.pre7 release/0.8.pre8 \
|
371 | > _release/VERSION/changelog.html
|
372 | }
|
373 |
|
374 | git-changelog-0.8.pre9() {
|
375 | _git-changelog origin/release/0.8.pre8 release/0.8.pre9 \
|
376 | > _release/VERSION/changelog.html
|
377 | }
|
378 |
|
379 | git-changelog-0.8.pre10() {
|
380 | _git-changelog origin/release/0.8.pre9 release/0.8.pre10 \
|
381 | > _release/VERSION/changelog.html
|
382 | }
|
383 |
|
384 | git-changelog-0.8.pre11() {
|
385 | _git-changelog origin/release/0.8.pre10 release/0.8.pre11 \
|
386 | > _release/VERSION/changelog.html
|
387 | }
|
388 |
|
389 | git-changelog-0.8.0() {
|
390 | _git-changelog origin/release/0.8.pre11 release/0.8.0 \
|
391 | > _release/VERSION/changelog.html
|
392 | }
|
393 |
|
394 | git-changelog-0.8.1() {
|
395 | _git-changelog origin/release/0.8.0 release/0.8.1 \
|
396 | > _release/VERSION/changelog.html
|
397 | }
|
398 |
|
399 | git-changelog-0.8.2() {
|
400 | _git-changelog origin/release/0.8.1 release/0.8.2 \
|
401 | > _release/VERSION/changelog.html
|
402 | }
|
403 |
|
404 | git-changelog-0.8.3() {
|
405 | _git-changelog origin/release/0.8.2 release/0.8.3 \
|
406 | > _release/VERSION/changelog.html
|
407 | }
|
408 |
|
409 | git-changelog-0.8.4() {
|
410 | _git-changelog origin/release/0.8.3 release/0.8.4 \
|
411 | > _release/VERSION/changelog.html
|
412 | }
|
413 |
|
414 | git-changelog-0.8.5() {
|
415 | _git-changelog origin/release/0.8.4 release/0.8.5 \
|
416 | > _release/VERSION/changelog.html
|
417 | }
|
418 |
|
419 | git-changelog-0.8.6() {
|
420 | _git-changelog origin/release/0.8.5 release/0.8.6 \
|
421 | > _release/VERSION/changelog.html
|
422 | }
|
423 |
|
424 | git-changelog-0.8.7() {
|
425 | _git-changelog origin/release/0.8.6 release/0.8.7 \
|
426 | > _release/VERSION/changelog.html
|
427 | }
|
428 |
|
429 | git-changelog-0.8.8() {
|
430 | _git-changelog origin/release/0.8.7 release/0.8.8 \
|
431 | > _release/VERSION/changelog.html
|
432 | }
|
433 |
|
434 | git-changelog-0.8.9() {
|
435 | _git-changelog origin/release/0.8.8 release/0.8.9 \
|
436 | > _release/VERSION/changelog.html
|
437 | }
|
438 |
|
439 | git-changelog-0.8.10() {
|
440 | _git-changelog origin/release/0.8.9 release/0.8.10 \
|
441 | > _release/VERSION/changelog.html
|
442 | }
|
443 |
|
444 | git-changelog-0.8.11() {
|
445 | _git-changelog origin/release/0.8.10 release/0.8.11 \
|
446 | > _release/VERSION/changelog.html
|
447 | }
|
448 |
|
449 | git-changelog-0.8.12() {
|
450 | _git-changelog origin/release/0.8.11 release/0.8.12 \
|
451 | > _release/VERSION/changelog.html
|
452 | }
|
453 |
|
454 | git-changelog-0.9.0() {
|
455 | _git-changelog origin/release/0.8.12 release/0.9.0 \
|
456 | > _release/VERSION/changelog.html
|
457 | }
|
458 |
|
459 | git-changelog-0.9.1() {
|
460 | _git-changelog origin/release/0.9.0 release/0.9.1 \
|
461 | > _release/VERSION/changelog.html
|
462 | }
|
463 |
|
464 | git-changelog-0.9.3() {
|
465 | _git-changelog origin/release/0.9.2 release/0.9.3 \
|
466 | > _release/VERSION/changelog.html
|
467 | }
|
468 |
|
469 | git-changelog-0.9.4() {
|
470 | _git-changelog origin/release/0.9.3 release/0.9.4 \
|
471 | > _release/VERSION/changelog.html
|
472 | }
|
473 |
|
474 | git-changelog-0.9.5() {
|
475 | _git-changelog origin/release/0.9.4 release/0.9.5 \
|
476 | > _release/VERSION/changelog.html
|
477 | }
|
478 |
|
479 | git-changelog-0.9.6() {
|
480 | _git-changelog origin/release/0.9.5 release/0.9.6 \
|
481 | > _release/VERSION/changelog.html
|
482 | }
|
483 |
|
484 | git-changelog-0.9.7() {
|
485 | _git-changelog origin/release/0.9.6 release/0.9.7 \
|
486 | > _release/VERSION/changelog.html
|
487 | }
|
488 |
|
489 | git-changelog-0.9.8() {
|
490 | _git-changelog origin/release/0.9.7 release/0.9.8 \
|
491 | > _release/VERSION/changelog.html
|
492 | }
|
493 |
|
494 | git-changelog-0.9.9() {
|
495 | _git-changelog origin/release/0.9.8 release/0.9.9 \
|
496 | > _release/VERSION/changelog.html
|
497 | }
|
498 |
|
499 | git-changelog-0.10.0() {
|
500 | _git-changelog origin/release/0.9.9 release/0.10.0 \
|
501 | > _release/VERSION/changelog.html
|
502 | }
|
503 |
|
504 | git-changelog-0.10.1() {
|
505 | _git-changelog origin/release/0.10.0 release/0.10.1 \
|
506 | > _release/VERSION/changelog.html
|
507 | }
|
508 |
|
509 | git-changelog-0.11.0() {
|
510 | _git-changelog origin/release/0.10.1 release/0.11.0 \
|
511 | > _release/VERSION/changelog.html
|
512 | }
|
513 |
|
514 | git-changelog-0.12.0() {
|
515 | _git-changelog origin/release/0.11.0 release/0.12.0 \
|
516 | > _release/VERSION/changelog.html
|
517 | }
|
518 |
|
519 | git-changelog-0.12.3() {
|
520 | _git-changelog origin/release/0.12.0 release/0.12.3 \
|
521 | > _release/VERSION/changelog.html
|
522 | }
|
523 |
|
524 | git-changelog-0.12.4() {
|
525 | _git-changelog origin/release/0.12.3 release/0.12.4 \
|
526 | > _release/VERSION/changelog.html
|
527 | }
|
528 |
|
529 | git-changelog-0.12.5() {
|
530 | _git-changelog origin/release/0.12.4 release/0.12.5 \
|
531 | > _release/VERSION/changelog.html
|
532 | }
|
533 |
|
534 | git-changelog-0.12.6() {
|
535 | _git-changelog origin/release/0.12.5 release/0.12.6 \
|
536 | > _release/VERSION/changelog.html
|
537 | }
|
538 |
|
539 | git-changelog-0.12.7() {
|
540 | _git-changelog origin/release/0.12.6 release/0.12.7 \
|
541 | > _release/VERSION/changelog.html
|
542 | }
|
543 |
|
544 | git-changelog-0.12.8() {
|
545 | _git-changelog origin/release/0.12.7 release/0.12.8 \
|
546 | > _release/VERSION/changelog.html
|
547 | }
|
548 |
|
549 | git-changelog-0.12.9() {
|
550 | _git-changelog origin/release/0.12.8 release/0.12.9 \
|
551 | > _release/VERSION/changelog.html
|
552 | }
|
553 |
|
554 | git-changelog-0.13.0() {
|
555 | _git-changelog origin/release/0.12.9 release/0.13.0 \
|
556 | > _release/VERSION/changelog.html
|
557 | }
|
558 |
|
559 | git-changelog-0.13.1() {
|
560 | _git-changelog origin/release/0.13.0 release/0.13.1 \
|
561 | > _release/VERSION/changelog.html
|
562 | }
|
563 |
|
564 | git-changelog-0.14.0() {
|
565 | _git-changelog origin/release/0.13.1 release/0.14.0 \
|
566 | > _release/VERSION/changelog.html
|
567 | }
|
568 |
|
569 | git-changelog-0.14.1() {
|
570 | _git-changelog origin/release/0.14.0 release/0.14.1 \
|
571 | > _release/VERSION/changelog.html
|
572 | }
|
573 |
|
574 | git-changelog-0.14.2() {
|
575 | _git-changelog origin/release/0.14.1 release/0.14.2 \
|
576 | > _release/VERSION/changelog.html
|
577 | }
|
578 |
|
579 | git-changelog-0.15.0() {
|
580 | _git-changelog origin/release/0.14.2 release/0.15.0 \
|
581 | > _release/VERSION/changelog.html
|
582 | }
|
583 |
|
584 | git-changelog-0.16.0() {
|
585 | _git-changelog origin/release/0.15.0 release/0.16.0 \
|
586 | > _release/VERSION/changelog.html
|
587 | }
|
588 |
|
589 | git-changelog-0.17.0() {
|
590 | _git-changelog origin/release/0.16.0 release/0.17.0 \
|
591 | > _release/VERSION/changelog.html
|
592 | }
|
593 |
|
594 | git-changelog-0.18.0() {
|
595 | _git-changelog origin/release/0.17.0 release/0.18.0 \
|
596 | > _release/VERSION/changelog.html
|
597 | }
|
598 |
|
599 | git-changelog-0.19.0() {
|
600 | _git-changelog origin/release/0.18.0 release/0.19.0 \
|
601 | > _release/VERSION/changelog.html
|
602 | }
|
603 |
|
604 | git-changelog-0.20.0() {
|
605 | _git-changelog origin/release/0.19.0 release/0.20.0 \
|
606 | > _release/VERSION/changelog.html
|
607 | }
|
608 |
|
609 | git-changelog-0.21.0() {
|
610 | _git-changelog origin/release/0.20.0 release/0.21.0 \
|
611 | > _release/VERSION/changelog.html
|
612 | }
|
613 |
|
614 | git-changelog-0.22.0() {
|
615 | _git-changelog origin/release/0.21.0 release/0.22.0 \
|
616 | > _release/VERSION/changelog.html
|
617 | }
|
618 |
|
619 | git-changelog-0.23.0() {
|
620 | _git-changelog origin/release/0.22.0 release/0.23.0 \
|
621 | > _release/VERSION/changelog.html
|
622 | }
|
623 |
|
624 | git-changelog-0.24.0() {
|
625 | _git-changelog origin/release/0.23.0 release/0.24.0 \
|
626 | > _release/VERSION/changelog.html
|
627 | }
|
628 |
|
629 | # For announcement.html
|
630 | html-redirect() {
|
631 | local url=$1
|
632 | cat <<EOF
|
633 | <!DOCTYPE html>
|
634 | <html>
|
635 | <head>
|
636 | <meta http-equiv="refresh" content="0; url=$url" />
|
637 | </head>
|
638 | <body>
|
639 | <p>Redirect to<a href="$url">$url</a></p>
|
640 | </body>
|
641 | </html>
|
642 | EOF
|
643 | }
|
644 |
|
645 | no-announcement() {
|
646 | html-head --title 'No announcement'
|
647 | cat <<EOF
|
648 | <body>
|
649 | <p>No announcement for this release. Previous announcements are tagged
|
650 | with #<a href="/blog/tags.html?tag=oil-release#oil-release">oil-release</a>.
|
651 | </p>
|
652 | </body>
|
653 | </html>
|
654 | EOF
|
655 | }
|
656 |
|
657 | write-no-announcement() {
|
658 | no-announcement > _release/VERSION/announcement.html
|
659 | }
|
660 |
|
661 | readonly SITE_DEPLOY_DIR='../oilshell.org__deploy'
|
662 |
|
663 | announcement-0.0() {
|
664 | html-redirect '/blog/2017/07/23.html' \
|
665 | > ../oilshell.org__deploy/release/0.0.0/announcement.html
|
666 | }
|
667 |
|
668 | announcement-0.1() {
|
669 | local version='0.1.0'
|
670 | html-redirect '/blog/2017/09/09.html' \
|
671 | > ../oilshell.org__deploy/release/$version/announcement.html
|
672 | }
|
673 |
|
674 | announcement-0.2() {
|
675 | html-redirect '/blog/2017/11/10.html' > _release/VERSION/announcement.html
|
676 | }
|
677 |
|
678 | announcement-0.3() {
|
679 | html-redirect '/blog/2017/12/22.html' > _release/VERSION/announcement.html
|
680 | #no-announcement > _release/VERSION/announcement.html
|
681 | }
|
682 |
|
683 | announcement-0.4() {
|
684 | html-redirect '/blog/2018/02/03.html' > _release/VERSION/announcement.html
|
685 | }
|
686 |
|
687 | announcement-0.5.alpha3() {
|
688 | html-redirect '/blog/2018/04/30.html' > _release/VERSION/announcement.html
|
689 | }
|
690 |
|
691 | announcement-0.5() {
|
692 | html-redirect '/blog/2018/07/12.html' > _release/VERSION/announcement.html
|
693 | }
|
694 |
|
695 | announcement-0.6.pre1() {
|
696 | html-redirect '/blog/2018/08/15.html' > _release/VERSION/announcement.html
|
697 | }
|
698 |
|
699 | announcement-0.6.pre2() {
|
700 | html-redirect '/blog/2018/08/19.html' > _release/VERSION/announcement.html
|
701 | }
|
702 |
|
703 | announcement-0.6.pre3() {
|
704 | write-no-announcement
|
705 | }
|
706 |
|
707 | announcement-0.6.pre4() {
|
708 | write-no-announcement
|
709 | }
|
710 |
|
711 | announcement-0.6.pre5() {
|
712 | html-redirect '/blog/2018/10/11.html' > $SITE_DEPLOY_DIR/release/0.6.pre5/announcement.html
|
713 | }
|
714 |
|
715 | announcement-0.6.pre6() {
|
716 | no-announcement > $SITE_DEPLOY_DIR/release/0.6.pre6/announcement.html
|
717 | }
|
718 |
|
719 | announcement-0.6.pre7() {
|
720 | write-no-announcement
|
721 | }
|
722 |
|
723 | announcement-0.6.pre8() {
|
724 | html-redirect '/blog/2018/11/15.html' > $SITE_DEPLOY_DIR/release/0.6.pre8/announcement.html
|
725 | }
|
726 |
|
727 | announcement-0.6.pre9() {
|
728 | write-no-announcement
|
729 | }
|
730 |
|
731 | announcement-0.6.pre10() {
|
732 | write-no-announcement
|
733 | }
|
734 |
|
735 | announcement-0.6.pre11() {
|
736 | html-redirect '/blog/2018/12/16.html' > $SITE_DEPLOY_DIR/release/0.6.pre11/announcement.html
|
737 | }
|
738 |
|
739 | announcement-0.6.pre12() {
|
740 | html-redirect '/blog/2019/01/18.html' > $SITE_DEPLOY_DIR/release/0.6.pre12/announcement.html
|
741 | }
|
742 |
|
743 | announcement-0.6.pre13() {
|
744 | html-redirect '/blog/2019/02/05.html' > $SITE_DEPLOY_DIR/release/0.6.pre13/announcement.html
|
745 | }
|
746 |
|
747 | announcement-0.6.pre14() {
|
748 | html-redirect '/blog/2019/02/18.html' > $SITE_DEPLOY_DIR/release/0.6.pre14/announcement.html
|
749 | }
|
750 |
|
751 | announcement-0.6.pre15() {
|
752 | html-redirect '/blog/2019/02/18.html' > $SITE_DEPLOY_DIR/release/0.6.pre15/announcement.html
|
753 | }
|
754 |
|
755 | announcement-0.6.pre16-to-22() {
|
756 | for i in {16..22}; do
|
757 | html-redirect '/blog/2019/06/13.html' > $SITE_DEPLOY_DIR/release/0.6.pre$i/announcement.html
|
758 | done
|
759 | }
|
760 |
|
761 | announcement-0.6.pre23() {
|
762 | html-redirect '/blog/2019/07/19.html' > $SITE_DEPLOY_DIR/release/0.6.pre23/announcement.html
|
763 | }
|
764 |
|
765 | announcement-0.6.0() {
|
766 | html-redirect '/blog/2019/07/19.html' > $SITE_DEPLOY_DIR/release/0.6.0/announcement.html
|
767 | }
|
768 |
|
769 | announcement-0.7.pre1() {
|
770 | html-redirect '/blog/2019/07/19.html' > $SITE_DEPLOY_DIR/release/0.7.pre1/announcement.html
|
771 | }
|
772 |
|
773 | announcement-0.7.pre2() {
|
774 | write-no-announcement
|
775 | }
|
776 |
|
777 | announcement-0.7.pre3() {
|
778 | write-no-announcement
|
779 | }
|
780 |
|
781 | announcement-0.7.pre4() {
|
782 | write-no-announcement
|
783 | }
|
784 |
|
785 | announcement-0.7.pre5() {
|
786 | write-no-announcement
|
787 | }
|
788 |
|
789 | announcement-0.7.pre6() {
|
790 | html-redirect '/blog/2016/12/09.html' > $SITE_DEPLOY_DIR/release/0.7.pre6/announcement.html
|
791 | }
|
792 |
|
793 | announcement-0.7.pre7() {
|
794 | html-redirect '/blog/2019/12/09.html' > $SITE_DEPLOY_DIR/release/0.7.pre7/announcement.html
|
795 | }
|
796 |
|
797 | announcement-0.7.pre8() {
|
798 | html-redirect '/blog/2019/12/09.html' > $SITE_DEPLOY_DIR/release/0.7.pre8/announcement.html
|
799 | }
|
800 |
|
801 | announcement-0.7.pre9() {
|
802 | html-redirect '/blog/2019/12/09.html' > $SITE_DEPLOY_DIR/release/0.7.pre9/announcement.html
|
803 | }
|
804 |
|
805 | announcement-0.7.pre10() {
|
806 | write-no-announcement
|
807 | }
|
808 |
|
809 | announcement-0.7.pre11() {
|
810 | write-no-announcement
|
811 | }
|
812 |
|
813 | announcement-0.7.0() {
|
814 | html-redirect '/blog/2020/02/recap.html' > $SITE_DEPLOY_DIR/release/0.7.0/announcement.html
|
815 | }
|
816 |
|
817 | announcement-0.8.pre1() {
|
818 | html-redirect '/blog/2020/02/recap.html' > $SITE_DEPLOY_DIR/release/0.8.pre1/announcement.html
|
819 | }
|
820 |
|
821 | announcement-0.8.pre2() {
|
822 | html-redirect '/blog/2020/03/release-metrics.html' > $SITE_DEPLOY_DIR/release/0.8.pre2/announcement.html
|
823 | }
|
824 |
|
825 | announcement-0.8.pre3() {
|
826 | html-redirect '/blog/2020/03/release-0.8.pre3.html' > $SITE_DEPLOY_DIR/release/0.8.pre3/announcement.html
|
827 | }
|
828 |
|
829 | announcement-0.8.pre4() {
|
830 | html-redirect '/blog/2020/04/release-0.8.pre4.html' > $SITE_DEPLOY_DIR/release/0.8.pre4/announcement.html
|
831 | }
|
832 |
|
833 | announcement-0.8.pre5() {
|
834 | html-redirect '/blog/2020/05/translation-progress.html' > $SITE_DEPLOY_DIR/release/0.8.pre5/announcement.html
|
835 | }
|
836 |
|
837 | announcement-0.8.pre6() {
|
838 | html-redirect '/blog/2020/06/release-0.8.pre6.html' > $SITE_DEPLOY_DIR/release/0.8.pre6/announcement.html
|
839 | }
|
840 |
|
841 | announcement-0.8.pre7() {
|
842 | write-no-announcement
|
843 | }
|
844 |
|
845 | announcement-0.8.pre8() {
|
846 | write-no-announcement
|
847 | }
|
848 |
|
849 | announcement-0.8.pre9() {
|
850 | write-no-announcement
|
851 | }
|
852 |
|
853 | announcement-0.8.pre10() {
|
854 | write-no-announcement
|
855 | }
|
856 |
|
857 | announcement-0.8.pre11() {
|
858 | write-no-announcement
|
859 | }
|
860 |
|
861 | announcement-0.8.0() {
|
862 | write-no-announcement
|
863 | }
|
864 |
|
865 | announcement-0.8.1() {
|
866 | write-no-announcement
|
867 | }
|
868 |
|
869 | announcement-0.8.2() {
|
870 | write-no-announcement
|
871 | }
|
872 |
|
873 | announcement-0.8.3() {
|
874 | write-no-announcement
|
875 | }
|
876 |
|
877 | announcement-0.8.4() {
|
878 | write-no-announcement
|
879 | }
|
880 |
|
881 | announcement-0.8.5() {
|
882 | write-no-announcement
|
883 | }
|
884 |
|
885 | announcement-0.8.6() {
|
886 | write-no-announcement
|
887 | }
|
888 |
|
889 | announcement-0.8.7() {
|
890 | write-no-announcement
|
891 | }
|
892 |
|
893 | announcement-0.8.8() {
|
894 | write-no-announcement
|
895 | }
|
896 |
|
897 | announcement-0.8.9() {
|
898 | write-no-announcement
|
899 | }
|
900 |
|
901 | announcement-0.8.10() {
|
902 | write-no-announcement
|
903 | }
|
904 |
|
905 | announcement-0.8.11() {
|
906 | write-no-announcement
|
907 | }
|
908 |
|
909 | announcement-0.8.12() {
|
910 | write-no-announcement
|
911 | }
|
912 |
|
913 | announcement-0.9.0() {
|
914 | write-no-announcement
|
915 | }
|
916 |
|
917 | announcement-0.9.1() {
|
918 | write-no-announcement
|
919 | }
|
920 |
|
921 | announcement-0.9.3() {
|
922 | write-no-announcement
|
923 | }
|
924 |
|
925 | announcement-0.9.4() {
|
926 | write-no-announcement
|
927 | }
|
928 |
|
929 | announcement-0.9.5() {
|
930 | write-no-announcement
|
931 | }
|
932 |
|
933 | announcement-0.9.6() {
|
934 | write-no-announcement
|
935 | }
|
936 |
|
937 | announcement-0.9.7() {
|
938 | write-no-announcement
|
939 | }
|
940 |
|
941 | announcement-0.9.8() {
|
942 | write-no-announcement
|
943 | }
|
944 |
|
945 | announcement-0.9.9() {
|
946 | write-no-announcement
|
947 | }
|
948 |
|
949 | announcement-0.10.0() {
|
950 | write-no-announcement
|
951 | }
|
952 |
|
953 | announcement-0.10.1() {
|
954 | write-no-announcement
|
955 | }
|
956 |
|
957 | announcement-0.11.0() {
|
958 | write-no-announcement
|
959 | }
|
960 |
|
961 | announcement-0.12.0() {
|
962 | write-no-announcement
|
963 | }
|
964 |
|
965 | announcement-0.12.3() {
|
966 | write-no-announcement
|
967 | }
|
968 |
|
969 | announcement-0.12.4() {
|
970 | write-no-announcement
|
971 | }
|
972 |
|
973 | announcement-0.12.5() {
|
974 | write-no-announcement
|
975 | }
|
976 |
|
977 | announcement-0.12.6() {
|
978 | write-no-announcement
|
979 | }
|
980 |
|
981 | announcement-0.12.7() {
|
982 | write-no-announcement
|
983 | }
|
984 |
|
985 | announcement-0.12.8() {
|
986 | write-no-announcement
|
987 | }
|
988 |
|
989 | announcement-0.12.9() {
|
990 | write-no-announcement
|
991 | }
|
992 |
|
993 | announcement-0.13.0() {
|
994 | write-no-announcement
|
995 | }
|
996 |
|
997 | announcement-0.13.1() {
|
998 | write-no-announcement
|
999 | }
|
1000 |
|
1001 | announcement-0.14.0() {
|
1002 | write-no-announcement
|
1003 | }
|
1004 |
|
1005 | announcement-0.14.1() {
|
1006 | write-no-announcement
|
1007 | }
|
1008 |
|
1009 | announcement-0.14.2() {
|
1010 | write-no-announcement
|
1011 | }
|
1012 |
|
1013 | announcement-0.15.0() {
|
1014 | write-no-announcement
|
1015 | }
|
1016 |
|
1017 | announcement-0.16.0() {
|
1018 | write-no-announcement
|
1019 | }
|
1020 |
|
1021 | announcement-0.17.0() {
|
1022 | write-no-announcement
|
1023 | }
|
1024 |
|
1025 | announcement-0.18.0() {
|
1026 | write-no-announcement
|
1027 | }
|
1028 |
|
1029 | announcement-0.19.0() {
|
1030 | write-no-announcement
|
1031 | }
|
1032 |
|
1033 | announcement-0.20.0() {
|
1034 | write-no-announcement
|
1035 | }
|
1036 |
|
1037 | announcement-0.21.0() {
|
1038 | write-no-announcement
|
1039 | }
|
1040 |
|
1041 | announcement-0.22.0() {
|
1042 | write-no-announcement
|
1043 | }
|
1044 |
|
1045 | announcement-0.23.0() {
|
1046 | write-no-announcement
|
1047 | }
|
1048 |
|
1049 | announcement-0.24.0() {
|
1050 | write-no-announcement
|
1051 | }
|
1052 |
|
1053 | blog-redirect() {
|
1054 | html-redirect 'making-plans.html' > $SITE_DEPLOY_DIR/blog/2020/01/11.html
|
1055 | }
|
1056 |
|
1057 | if test $(basename $0) = 'release-version.sh'; then
|
1058 | "$@"
|
1059 | fi
|