aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-03-29 16:01:27 -0700
committerisaacs <i@izs.me>2012-03-29 16:04:48 -0700
commit7abbda8ba2ecabd93b11388bc593ad94da2546bc (patch)
tree773346cb3a361e5096a28b58f24ae43cf94805ee /tools
parent6ebe9e0c1d28e82c5b49a9c8bbd166f6f296fd56 (diff)
downloadandroid-node-v8-7abbda8ba2ecabd93b11388bc593ad94da2546bc.tar.gz
android-node-v8-7abbda8ba2ecabd93b11388bc593ad94da2546bc.tar.bz2
android-node-v8-7abbda8ba2ecabd93b11388bc593ad94da2546bc.zip
Make rules for release blog post and email message
Diffstat (limited to 'tools')
-rw-r--r--tools/changelog-head.sh15
-rw-r--r--tools/email-footer.md13
2 files changed, 28 insertions, 0 deletions
diff --git a/tools/changelog-head.sh b/tools/changelog-head.sh
new file mode 100644
index 0000000000..e0cec16638
--- /dev/null
+++ b/tools/changelog-head.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+cat ChangeLog | {
+ s=-1
+ while read line; do
+ if [ "${line:0:1}" == "2" ]; then
+ let "++s"
+ fi
+ if [ $s -eq 1 ]; then
+ exit
+ else
+ echo "$line"
+ fi
+ done
+}
+
diff --git a/tools/email-footer.md b/tools/email-footer.md
new file mode 100644
index 0000000000..0d96b45c5a
--- /dev/null
+++ b/tools/email-footer.md
@@ -0,0 +1,13 @@
+Source Code: http://nodejs.org/dist/__VERSION__/node-__VERSION__.tar.gz
+
+Windows Installer: http://nodejs.org/dist/__VERSION__/node-__VERSION__.msi
+
+Windows x64 Files: http://nodejs.org/dist/__VERSION__/x64/
+
+Macintosh Installer (Universal): http://nodejs.org/dist/__VERSION__/node-__VERSION__.pkg
+
+Other release files: http://nodejs.org/dist/__VERSION__/
+
+Website: http://nodejs.org/docs/__VERSION__/
+
+Documentation: http://nodejs.org/docs/__VERSION__/api/