<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -37,7 +37,7 @@ This plugin wouldn't exist without Rick Olsen's acts_as_versioned. AAV has been
 * Uses ActiveRecord's dirty attribute tracking.
 * Several ways to find revisions including:
   * revision number
-  * relative keywords (:previous, :last)
+  * relative keywords (:first, :previous and :last)
   * timestamp
 * Reverting
 * Branching
@@ -96,7 +96,7 @@ Some example usage:
   @project.revision_number        # =&gt; 2
   
 Navigating revisions:
-
+  
   @previous = @project.find_revision(:previous)
   # or
   @previous = @project.revisions.first
@@ -107,7 +107,16 @@ Navigating revisions:
   @previous.revision_name         # =&gt; &quot;Changed name&quot;
   
   @previous.previous.name         # =&gt; &quot;Rich&quot;
-  @previous.ancestors.map(&amp;:name) # =&gt; [&quot;Rich&quot;]
+  
+  # Forcing the creation of a new revision.
+  @project.updated_attribute(&quot;Rogelio&quot;)
+  @project.revision_number        # =&gt; 3
+  
+  @newest = @project.find_revision(:previous)
+  @newest.ancestors.map(&amp;:name)   # =&gt; [&quot;Third&quot;, &quot;Rich&quot;]
+  
+  @oldest = @project.find_revision(:first)
+  @oldest.descendants.map(&amp;:name) # =&gt; [&quot;Sam&quot;, &quot;Third&quot;]
   
 Reverting:
 </diff>
      <filename>README.rdoc</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>760730fa592da6344a5dbe46aa6a866eca7cb90d</id>
    </parent>
  </parents>
  <author>
    <name>Rich Cavanaugh</name>
    <email>cavanaugh@fatjam.com</email>
  </author>
  <url>http://github.com/fatjam/acts_as_revisable/commit/c514e3ed7706dca7314b6c50cae60cfdc1036500</url>
  <id>c514e3ed7706dca7314b6c50cae60cfdc1036500</id>
  <committed-date>2008-05-31T17:30:02-07:00</committed-date>
  <authored-date>2008-05-31T17:30:02-07:00</authored-date>
  <message>a few additional examples of navigating revisions.</message>
  <tree>7e6a52e74a9c98ddaabc15073e25d3ec854001ba</tree>
  <committer>
    <name>Rich Cavanaugh</name>
    <email>cavanaugh@fatjam.com</email>
  </committer>
</commit>
