diff --git a/Changelog b/Changelog index 6379a8286..aefd4f839 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +2.6.5 (June 22, 2012) + Allow created_at to be set when using build_stubbed + 2.6.4 (March 16, 2012) Do not ignore names of transient attributes Ensure attributes set on instance are calculated uniquely diff --git a/Gemfile.lock b/Gemfile.lock index 50249c3f2..d6a28f080 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_girl (2.6.4) + factory_girl (2.6.5) activesupport (>= 2.3.9) GEM diff --git a/gemfiles/2.3.gemfile.lock b/gemfiles/2.3.gemfile.lock index 4c7f1a6f1..87b401d34 100644 --- a/gemfiles/2.3.gemfile.lock +++ b/gemfiles/2.3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: /Users/joshuaclayton/dev/gems/factory_girl specs: - factory_girl (2.6.4) + factory_girl (2.6.5) activesupport (>= 2.3.9) GEM diff --git a/gemfiles/3.0.gemfile.lock b/gemfiles/3.0.gemfile.lock index 6d51a148a..7a221a9ff 100644 --- a/gemfiles/3.0.gemfile.lock +++ b/gemfiles/3.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: /Users/joshuaclayton/dev/gems/factory_girl specs: - factory_girl (2.6.4) + factory_girl (2.6.5) activesupport (>= 2.3.9) GEM diff --git a/gemfiles/3.1.gemfile.lock b/gemfiles/3.1.gemfile.lock index a44953dfd..ed16f5766 100644 --- a/gemfiles/3.1.gemfile.lock +++ b/gemfiles/3.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: /Users/joshuaclayton/dev/gems/factory_girl specs: - factory_girl (2.6.4) + factory_girl (2.6.5) activesupport (>= 2.3.9) GEM diff --git a/gemfiles/3.2.gemfile.lock b/gemfiles/3.2.gemfile.lock index cab37c9b8..801b733cd 100644 --- a/gemfiles/3.2.gemfile.lock +++ b/gemfiles/3.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: /Users/joshuaclayton/dev/gems/factory_girl specs: - factory_girl (2.6.4) + factory_girl (2.6.5) activesupport (>= 2.3.9) GEM diff --git a/lib/factory_girl/version.rb b/lib/factory_girl/version.rb index 10b6844e4..a28713466 100644 --- a/lib/factory_girl/version.rb +++ b/lib/factory_girl/version.rb @@ -1,4 +1,4 @@ module FactoryGirl - VERSION = "2.6.4" + VERSION = "2.6.5" end