diff --git a/Changelog b/Changelog index 0e5fae0..c429d00 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,8 @@ +2.6.3 (March 9, 2012) + Fix issue with traits not being present the first time a factory is accessed + Update available Cucumber step definitions to not require a trialing colon + when building a table of attributes to instantiate records with + 2.6.2 (March 9, 2012) Allow factories to use all their ancestors' traits Ignore bin dir generated by bundler diff --git a/Gemfile.lock b/Gemfile.lock index a973095..5fd1b07 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_girl (2.6.2) + factory_girl (2.6.3) activesupport (>= 2.3.9) GEM diff --git a/gemfiles/2.3.gemfile.lock b/gemfiles/2.3.gemfile.lock index 7fd6efd..ddc1df1 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.2) + factory_girl (2.6.3) activesupport (>= 2.3.9) GEM diff --git a/gemfiles/3.0.gemfile.lock b/gemfiles/3.0.gemfile.lock index 67c4964..53876da 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.2) + factory_girl (2.6.3) activesupport (>= 2.3.9) GEM diff --git a/gemfiles/3.1.gemfile.lock b/gemfiles/3.1.gemfile.lock index cf41c1c..eed87b1 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.2) + factory_girl (2.6.3) activesupport (>= 2.3.9) GEM diff --git a/gemfiles/3.2.gemfile.lock b/gemfiles/3.2.gemfile.lock index 7e9ed92..20adac6 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.2) + factory_girl (2.6.3) activesupport (>= 2.3.9) GEM diff --git a/lib/factory_girl/version.rb b/lib/factory_girl/version.rb index 5ec369b..32e9811 100644 --- a/lib/factory_girl/version.rb +++ b/lib/factory_girl/version.rb @@ -1,4 +1,4 @@ module FactoryGirl - VERSION = "2.6.2" + VERSION = "2.6.3" end