Created wiki page through web user interface.
diff --git a/ReleaseProcess.wiki b/ReleaseProcess.wiki
new file mode 100644
index 0000000..6792321
--- /dev/null
+++ b/ReleaseProcess.wiki
@@ -0,0 +1,29 @@
+#summary Commands to produce a new release.
+
+{{{
+VERSION=0.90
+
+# Tag version.
+git tag -a v$VERSION -m "Version $VERSION"
+git push --tags
+
+# Build.
+cd ~
+git clone https://code.google.com/p/plexi/ && cd plexi
+git checkout v$VERSION
+ant -Dadaptorlib.suffix=-$VERSION dist
+# Upload dist/ files. Mark new files featured, remove featured from old files.
+# TODO(ejona): I have no idea why this line is here. Remove if unneeded during next release.
+unzip adaptor-$VERSION-bin.zip adaptor-$VERSION-docs.zip
+
+# Update online documentation.
+cd ~
+git clone https://code.google.com/p/plexi.docs/ && cd plexi.docs
+rm -r *
+mkdir javadoc && cd javadoc
+unzip ~/plexi/dist/adaptor-$VERSION-docs.zip
+git add -A
+git commit -m "Update for version $VERSION"
+git tag -a v$VERSION -m "Version $VERSION"
+git push --tags
+}}}
\ No newline at end of file