Add trackable to migrations and release new version.

This commit is contained in:
José Valim 2009-12-02 16:41:00 -02:00
parent c711a9d1b5
commit 96f3c53d6b
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
== 0.6.3
* bug fix
* Added trackable to migrations
== 0.6.2
* enhancements

View File

@ -5,6 +5,7 @@ class DeviseCreate<%= table_name.camelize %> < ActiveRecord::Migration
t.confirmable
t.recoverable
t.rememberable
t.trackable
t.timestamps
end

View File

@ -1,3 +1,3 @@
module Devise
VERSION = "0.6.2".freeze
VERSION = "0.6.3".freeze
end