<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,4 @@
-== 0.3.2
+== 0.3.2 2009-03-23
 
 * 2xx statuses should be treated as success (Anders Conbere)
 * Support applications using the MethodOverride Rack middleware (L&#225;szl&#243; B&#225;csi)</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -12,7 +12,7 @@ See the OAuth specs http://oauth.net/core/1.0/
 
 You can also install it from the oauth rubyforge project http://rubyforge.org/projects/oauth/.
 
-The source code is now hosted on the OAuth GitHub Project http://github.com/pelle/oauth/tree/master
+The source code is now hosted on the OAuth GitHub Project http://github.com/mojodna/oauth
 
 == The basics
 
@@ -57,7 +57,7 @@ http://groups.google.com/group/oauth-ruby
 
 Read the &quot;8 steps for fixing other people's code&quot; http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/.
 
-The source code is now hosted on the OAuth GitHub Project http://github.com/pelle/oauth/tree/master
+The source code is now hosted on the OAuth GitHub Project http://github.com/mojodna/oauth
 
 To submit a patch, please fork the oauth project and create a patch with tests. Once you're happy with it send a pull request and post a message to the google group.
 </diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
 module OAuth #:nodoc:
-  VERSION = '0.3.1'
+  VERSION = '0.3.2'
 end</diff>
      <filename>lib/oauth/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,14 +2,14 @@
 
 Gem::Specification.new do |s|
   s.name = %q{oauth}
-  s.version = &quot;0.3.1&quot;
+  s.version = &quot;0.3.2&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Pelle Braendgaard&quot;, &quot;Blaine Cook&quot;, &quot;Larry Halff&quot;, &quot;Jesse Clark&quot;, &quot;Jon Crosby&quot;, &quot;Seth Fitzsimmons&quot;]
-  s.date = %q{2009-01-26}
+  s.date = %q{2009-03-23}
   s.default_executable = %q{oauth}
   s.description = %q{OAuth Core Ruby implementation}
-  s.email = %q{pelleb@gmail.com}
+  s.email = %q{oauth-ruby@googlegroups.com}
   s.executables = [&quot;oauth&quot;]
   s.extra_rdoc_files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;README.rdoc&quot;, &quot;website/index.txt&quot;]
   s.files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;README.rdoc&quot;, &quot;Rakefile&quot;, &quot;TODO&quot;, &quot;bin/oauth&quot;, &quot;examples/yql.rb&quot;, &quot;lib/oauth.rb&quot;, &quot;lib/oauth/oauth.rb&quot;, &quot;lib/oauth/cli.rb&quot;, &quot;lib/oauth/client.rb&quot;, &quot;lib/oauth/client/action_controller_request.rb&quot;, &quot;lib/oauth/client/helper.rb&quot;, &quot;lib/oauth/client/net_http.rb&quot;, &quot;lib/oauth/consumer.rb&quot;, &quot;lib/oauth/helper.rb&quot;, &quot;lib/oauth/oauth_test_helper.rb&quot;, &quot;lib/oauth/request_proxy.rb&quot;, &quot;lib/oauth/request_proxy/action_controller_request.rb&quot;, &quot;lib/oauth/request_proxy/base.rb&quot;, &quot;lib/oauth/request_proxy/jabber_request.rb&quot;, &quot;lib/oauth/request_proxy/mock_request.rb&quot;, &quot;lib/oauth/request_proxy/net_http.rb&quot;, &quot;lib/oauth/request_proxy/rack_request.rb&quot;, &quot;lib/oauth/server.rb&quot;, &quot;lib/oauth/signature.rb&quot;, &quot;lib/oauth/signature/base.rb&quot;, &quot;lib/oauth/signature/hmac/base.rb&quot;, &quot;lib/oauth/signature/hmac/md5.rb&quot;, &quot;lib/oauth/signature/hmac/rmd160.rb&quot;, &quot;lib/oauth/signature/hmac/sha1.rb&quot;, &quot;lib/oauth/signature/hmac/sha2.rb&quot;, &quot;lib/oauth/signature/md5.rb&quot;, &quot;lib/oauth/signature/plaintext.rb&quot;, &quot;lib/oauth/signature/rsa/sha1.rb&quot;, &quot;lib/oauth/signature/sha1.rb&quot;, &quot;lib/oauth/token.rb&quot;, &quot;lib/oauth/tokens/access_token.rb&quot;, &quot;lib/oauth/tokens/consumer_token.rb&quot;, &quot;lib/oauth/tokens/request_token.rb&quot;, &quot;lib/oauth/tokens/server_token.rb&quot;, &quot;lib/oauth/tokens/token.rb&quot;, &quot;lib/oauth/version.rb&quot;, &quot;oauth.gemspec&quot;, &quot;script/destroy&quot;, &quot;script/generate&quot;, &quot;script/txt2html&quot;, &quot;setup.rb&quot;, &quot;tasks/deployment.rake&quot;, &quot;tasks/environment.rake&quot;, &quot;tasks/website.rake&quot;, &quot;test/cases/oauth_case.rb&quot;, &quot;test/cases/spec/1_0-final/test_construct_request_url.rb&quot;, &quot;test/cases/spec/1_0-final/test_normalize_request_parameters.rb&quot;, &quot;test/cases/spec/1_0-final/test_parameter_encodings.rb&quot;, &quot;test/cases/spec/1_0-final/test_signature_base_strings.rb&quot;, &quot;test/keys/rsa.cert&quot;, &quot;test/keys/rsa.pem&quot;, &quot;test/test_access_token.rb&quot;, &quot;test/test_action_controller_request_proxy.rb&quot;, &quot;test/test_consumer.rb&quot;, &quot;test/test_helper.rb&quot;, &quot;test/test_hmac_sha1.rb&quot;, &quot;test/test_net_http_client.rb&quot;, &quot;test/test_net_http_request_proxy.rb&quot;, &quot;test/test_rack_request_proxy.rb&quot;, &quot;test/test_request_token.rb&quot;, &quot;test/test_rsa_sha1.rb&quot;, &quot;test/test_server.rb&quot;, &quot;test/test_signature.rb&quot;, &quot;test/test_signature_base.rb&quot;, &quot;test/test_signature_plain_text.rb&quot;, &quot;test/test_token.rb&quot;, &quot;website/index.html&quot;, &quot;website/index.txt&quot;, &quot;website/javascripts/rounded_corners_lite.inc.js&quot;, &quot;website/stylesheets/screen.css&quot;, &quot;website/template.rhtml&quot;]</diff>
      <filename>oauth.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -33,7 +33,7 @@
     &lt;h1&gt;Ruby OAuth GEM&lt;/h1&gt;
     &lt;div id=&quot;version&quot; class=&quot;clickable&quot; onclick='document.location = &quot;http://rubyforge.org/projects/oauth&quot;; return false'&gt;
       &lt;p&gt;Get Version&lt;/p&gt;
-      &lt;a href=&quot;http://rubyforge.org/projects/oauth&quot; class=&quot;numbers&quot;&gt;0.3.0&lt;/a&gt;
+      &lt;a href=&quot;http://rubyforge.org/projects/oauth&quot; class=&quot;numbers&quot;&gt;0.3.2&lt;/a&gt;
     &lt;/div&gt;
     &lt;h2&gt;What&lt;/h2&gt;
 &lt;p&gt;This is a RubyGem for implementing both OAuth clients and servers in Ruby applications.&lt;/p&gt;
@@ -41,7 +41,7 @@
 &lt;h2&gt;Installing&lt;/h2&gt;
 &lt;p&gt;&lt;pre class='syntax'&gt;&lt;span class=&quot;ident&quot;&gt;sudo&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;gem&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;oauth&lt;/span&gt;&lt;/pre&gt;&lt;/p&gt;
 &lt;p&gt;You can also install it from the &lt;a href=&quot;http://rubyforge.org/projects/oauth/&quot;&gt;oauth rubyforge project&lt;/a&gt;.&lt;/p&gt;
-&lt;p&gt;The source code is now hosted on the &lt;a href=&quot;http://github.com/pelle/oauth/tree/master&quot;&gt;OAuth GitHub Project&lt;/a&gt;&lt;/p&gt;
+&lt;p&gt;The source code is now hosted on the &lt;a href=&quot;http://github.com/mojodna/oauth&quot;&gt;OAuth GitHub Project&lt;/a&gt;&lt;/p&gt;
 &lt;h2&gt;The basics&lt;/h2&gt;
 &lt;p&gt;This is a ruby library which is intended to be used in creating Ruby Consumer and Service Provider applications. It is &lt;span class=&quot;caps&quot;&gt;NOT&lt;/span&gt; a Rails plugin, but could easily be used for the foundation for such a Rails plugin.&lt;/p&gt;
 &lt;p&gt;As a matter of fact it has been pulled out from an &lt;a href=&quot;http://code.google.com/p/oauth-plugin/&quot;&gt;OAuth Rails Plugin&lt;/a&gt; which now requires this &lt;span class=&quot;caps&quot;&gt;GEM&lt;/span&gt;.&lt;/p&gt;</diff>
      <filename>website/index.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>01ac7db41ef883423baa683874cb973b4e8424a5</id>
    </parent>
  </parents>
  <author>
    <name>Seth Fitzsimmons</name>
    <email>seth@mojodna.net</email>
  </author>
  <url>http://github.com/pelle/oauth/commit/90bf2372285c878a3c09d31a4a2e571398bff2d3</url>
  <id>90bf2372285c878a3c09d31a4a2e571398bff2d3</id>
  <committed-date>2009-03-23T13:55:52-07:00</committed-date>
  <authored-date>2009-03-23T13:20:59-07:00</authored-date>
  <message>0.3.2 release</message>
  <tree>1cb9c160411591d102ebf279ab0a30c94e870853</tree>
  <committer>
    <name>Seth Fitzsimmons</name>
    <email>seth@mojodna.net</email>
  </committer>
</commit>
