Add release notes and history.
diff --git a/HISTORY.md b/HISTORY.md
new file mode 100644
index 0000000..9d3b06e
--- /dev/null
+++ b/HISTORY.md
@@ -0,0 +1,20 @@
+# Optiq-csv release history
+
+For a full list of releases, see <a href="https://github.com/julianhyde/optiq-csv/releases">github</a>.
+
+## <a href="https://github.com/julianhyde/optiq-csv/releases/tag/optiq-csv-0.1">0.1</a> / 2014-01-13
+
+* Add release notes and history.
+* Enable maven-release-plugin.
+* Upgrade to optiq-0.4.17, linq4j-0.1.12, sqlline-1.1.6.
+* Upgrade tutorial for new Schema and Table SPIs.
+* Fixes for optiq SPI changes in <a href="https://github.com/julianhyde/optiq/issues/106">optiq-106</a>.
+* Enable oraclejdk8 in Travis CI.
+* Fix bug where non-existent directory would give NPE. Instead print warning.
+* Add an example of a planner rule.
+* Add CsvTableFactory, an example of a custom table.
+* Add a view to tutorial.
+* Split into scenario with a "simple" schema that generates tables (CsvTable) that just execute and a "smart" schema that generates tables (CsvSmartTable) that undergo optimization.
+* Make CsvEnumerator a top-level class.
+* Implement the algorithms to sniff names and types from the first row, and to return an enumerator of all rows.
+* Read column types from header of CSV file.
diff --git a/README.md b/README.md
index 6af1ea6..7d03945 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,5 @@
+[![Build Status](https://travis-ci.org/julianhyde/optiq-csv.png)](https://travis-ci.org/julianhyde/optiq-csv)
+
 optiq-csv
 ============
 
@@ -10,7 +12,7 @@
 Download and build
 ==================
 
-You need Java (1.5 or higher; 1.7 preferred), git and maven (2 or higher).
+You need Java (1.6 or higher; 1.7 preferred), git and maven (3.0.4 or later).
 
 ```bash
 $ git clone git://github.com/julianhyde/optiq-csv.git
@@ -58,3 +60,5 @@
 * Project page: http://www.hydromatic.net/optiq-csv
 * Source code: http://github.com/julianhyde/optiq-csv
 * Developers list: http://groups.google.com/group/optiq-dev
+* <a href="TUTORIAL.md">Tutorial</a>
+* <a href="HISTORY.md">Release notes and history</a>