From dde205487b8ed3a2e0d83260d51ec8a3acc4f0de Mon Sep 17 00:00:00 2001 From: Joshua Clayton Date: Fri, 23 Mar 2012 11:24:29 -0400 Subject: [PATCH] Bump version to 3.0.0 --- Changelog | 8 ++++++++ Gemfile.lock | 2 +- gemfiles/3.0.gemfile.lock | 2 +- gemfiles/3.1.gemfile.lock | 2 +- gemfiles/3.2.gemfile.lock | 2 +- lib/factory_girl/version.rb | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/Changelog b/Changelog index 6379a82..d632042 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,11 @@ +3.0.0 (March 23, 2012) + Deprecate the vintage syntax + Remove Rails 2.x support + Remove Ruby 1.8 support + Remove deprecated features, including default_strategy, factory_name, + :method for defining default strategy, ignore on individual attributes, and + interacting with Factory the way you would FactoryGirl + 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 29650e5..39d754d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_girl (3.0.0.rc1) + factory_girl (3.0.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/3.0.gemfile.lock b/gemfiles/3.0.gemfile.lock index e03665b..54d15b8 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 (3.0.0.rc1) + factory_girl (3.0.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/3.1.gemfile.lock b/gemfiles/3.1.gemfile.lock index 430bb1a..6c02e4a 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 (3.0.0.rc1) + factory_girl (3.0.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/3.2.gemfile.lock b/gemfiles/3.2.gemfile.lock index 57cb241..b76abcd 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 (3.0.0.rc1) + factory_girl (3.0.0) activesupport (>= 3.0.0) GEM diff --git a/lib/factory_girl/version.rb b/lib/factory_girl/version.rb index 35fdf3f..309cdee 100644 --- a/lib/factory_girl/version.rb +++ b/lib/factory_girl/version.rb @@ -1,4 +1,4 @@ module FactoryGirl - VERSION = "3.0.0.rc1" + VERSION = "3.0.0" end