Skip to content

Commit

Permalink
Version 5.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie Savage committed Nov 22, 2012
1 parent 27aa09e commit dd474b4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions History.rdoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
== 5.0.10 2012-11-21
* ActiveRecord 3.2.9 compatability (Tom Hughes, Chris Heald, Jack Tang)
* Add support for find_in_batches (Charlie Savage)
* Add support for touch method (Macario Ortega)
* Remove symbolized representation of primary keys to be consistent with ActiveRecord (Tiago Cardoso)
* Update destroy method to use hash of primary keys over an array. This allows the proper SQL
(using IS NULL) to be generated when one of the primary key attributes is nil (Scott Hunter).

== 5.0.9 2012-09-29
* Enable tests for MS SQL Servder (Enderson Maia)
* Update ActiveRecord::Base#initialize_dup override in line with ActiveRecord::Base 3.2.5+ (Lucas Maxwell)
Expand Down
2 changes: 1 addition & 1 deletion lib/composite_primary_keys/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module CompositePrimaryKeys
module VERSION
MAJOR = 5
MINOR = 0
TINY = 9
TINY = 10
STRING = [MAJOR, MINOR, TINY].join('.')
end
end
2 changes: 1 addition & 1 deletion website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<h1>Composite Primary Keys</h1>
<div id="version" class="clickable" onclick='document.location = "http://rubygems.org/gems/composite_primary_keys"; return false'>
Get Version
<a href="http://rubygems.org/gems/composite_primary_keys" class="numbers">5.0.8</a>
<a href="http://rubygems.org/gems/composite_primary_keys" class="numbers">5.0.10</a>
</div>
<h1>&#8594; Ruby on Rails</h1>
<h1>&#8594; ActiveRecords</h1>
Expand Down
2 changes: 1 addition & 1 deletion website/version-raw.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Announcement JS file
var version = 5.0.8;
var version = 5.0.10;
MagicAnnouncement.show('compositekeys', version);
2 changes: 1 addition & 1 deletion website/version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Version JS file
var version = 5.0.8;
var version = 5.0.10;

document.write(" - " + version);

0 comments on commit dd474b4

Please sign in to comment.