Skip to content

Commit

Permalink
Update to version 5.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie Savage committed Jul 2, 2012
1 parent aa186ef commit 3acb136
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions History.rdoc
@@ -1,3 +1,15 @@
== 5.0.8 2012-07-01
* Enabled tests for MS SQL Server (Enderson Maia)
* Update establish_connection to work with Rails 3.2.6 (Ivan Schneider)
* Fix typos in rake tasks names in README_tests.rdoc (Ivan Schneider)
* Fix problem with deleting non-CPK in Rails 3.2.5 (Sammy Larbi)
* Fixes relationship deletion for HABTM in Rails when it passes :all flag instead of
an array of IDs. Also adds new tests and test fixtures (Sammy Larbi)
* Change mysql db creation to execute one statement each time, since in some setups
it will not run multiple statements (Sammy Larbi)
* Fix multiple assignments to same column due to duplicate keys in @changed_attributes.
Includes test fixes (Jan Vlnas)

== 5.0.7 2012-06-03
* Fixed bug where validates_uniqueness failed for 3 or more primary keys. (Charlie Savage)

Expand Down
2 changes: 1 addition & 1 deletion lib/composite_primary_keys/version.rb
Expand Up @@ -2,7 +2,7 @@ module CompositePrimaryKeys
module VERSION
MAJOR = 5
MINOR = 0
TINY = 7
TINY = 8
STRING = [MAJOR, MINOR, TINY].join('.')
end
end
2 changes: 1 addition & 1 deletion website/index.html
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.6</a>
<a href="http://rubygems.org/gems/composite_primary_keys" class="numbers">5.0.8</a>
</div>
<h1>&#8594; Ruby on Rails</h1>
<h1>&#8594; ActiveRecords</h1>
Expand Down
2 changes: 1 addition & 1 deletion website/version-raw.js
@@ -1,3 +1,3 @@
// Announcement JS file
var version = 5.0.6;
var version = 5.0.8;
MagicAnnouncement.show('compositekeys', version);
2 changes: 1 addition & 1 deletion website/version.js
@@ -1,4 +1,4 @@
// Version JS file
var version = 5.0.6;
var version = 5.0.8;

document.write(" - " + version);

0 comments on commit 3acb136

Please sign in to comment.