Updating CHANGES.txt etc
diff --git a/CHANGES.txt b/CHANGES.txt
index 729d5d4..184f353 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -4,6 +4,9 @@
 Release 0.5.0: 2014-08-22
 
 INCOMPATIBLE CHANGES
+  TEZ-1472. Separate method calls for creating InputDataInformationEvent with 
+    serialized/unserialized payloads
+  TEZ-1469. AM/Session LRs are not shipped to vertices in new API use-case
   TEZ-960. VertexManagerPluginContext::getTotalAVailableResource() changed to
   VertexManagerPluginContext::getTotalAvailableResource()
   TEZ-1025. Rename tez.am.max.task.attempts to tez.am.task.max.failed.attempts 
@@ -85,6 +88,9 @@
 
 ALL CHANGES
 
+  TEZ-1436. Fix javadoc warnings (Jonathan Eagles via bikas)
+  TEZ-1472. Separate method calls for creating InputDataInformationEvent with serialized/unserialized payloads (Siddharth Seth via bikas)
+  TEZ-1469. AM/Session LRs are not shipped to vertices in new API use-case (bikas)
   TEZ-1449. Change user payloads to work with a byte buffer (Siddharth Seth via bikas)
   TEZ-1325. RecoveryParser can find incorrect last DAG ID. (Jeff Zhang via hitesh)
   TEZ-1466. Fix JDK8 builds of Tez (gopalv)
diff --git a/INSTALL.txt b/INSTALL.txt
index 17e7413..25d87c9 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -16,8 +16,8 @@
 3) Copy the relevant tez tarball into HDFS, and configure tez-site.xml
    - A tez tarball containing tez and hadoop libraries will be found at tez-dist/target/tez-0.5.0.tar.gz
    - Assuming that the tez jars are put in /apps/ on HDFS, the command would be
-     "hadoop dfs -mkdir /apps/tez-0.5.0"
-     "hadoop dfs -copyFromLocal tez-dist/target/tez-0.5.0.tar.gz /apps/tez-0.5.0/"
+     "hadoop fs -mkdir /apps/tez-0.5.0"
+     "hadoop fs -copyFromLocal tez-dist/target/tez-0.5.0.tar.gz /apps/tez-0.5.0/"
    - tez-site.xml configuration 
      - Set tez.lib.uris to point to the tar.gz uploaded to HDFS. Assuming the steps mentioned so far were followed,
        set tez.lib.uris to "${fs.defaultFS}/apps/tez-0.5.0/tez-0.5.0.tar.gz"
@@ -71,8 +71,8 @@
 Step 3 above changes as follows. Also subsequent steps would use tez-dist/target/tez-0.5.0-minimal.tar.gz instead of tez-dist/target/tez-0.5.0.tar.gz
    - A tez build without Hadoop dependencies will be available at tez-dist/target/tez-0.5.0-minimal.tar.gz
    - Assuming that the tez jars are put in /apps/ on HDFS, the command would be
-     "hadoop dfs -mkdir /apps/tez-0.5.0"
-     "hadoop dfs -copyFromLocal tez-dist/target/tez-0.5.0-minimal.tar.gz /apps/tez-0.5.0"
+     "hadoop fs -mkdir /apps/tez-0.5.0"
+     "hadoop fs -copyFromLocal tez-dist/target/tez-0.5.0-minimal.tar.gz /apps/tez-0.5.0"
    - tez-site.xml configuration
      - Set tez.lib.uris to point to the paths in HDFS containing the tez jars. Assuming the steps mentioned so far were followed,
      set tez.lib.uris to "${fs.defaultFS}/apps/tez-0.5.0/tez-0.5.0-minimal.tar.gz