Skip to content

Commit

Permalink
Bump the Version constants to align with the *next* release rather th…
Browse files Browse the repository at this point in the history
…an the previous release.

This allows people tracking non-release gems or git submodules to use the constants.
  • Loading branch information
NZKoz committed Sep 22, 2008
1 parent 10380a2 commit 5f86451
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module ActionMailer
module VERSION #:nodoc:
MAJOR = 2
MINOR = 1
MINOR = 2
TINY = 0

STRING = [MAJOR, MINOR, TINY].join('.')
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 2
MINOR = 1
MINOR = 2
TINY = 0

STRING = [MAJOR, MINOR, TINY].join('.')
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module ActiveRecord
module VERSION #:nodoc:
MAJOR = 2
MINOR = 1
MINOR = 2
TINY = 0

STRING = [MAJOR, MINOR, TINY].join('.')
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module ActiveSupport
module VERSION #:nodoc:
MAJOR = 2
MINOR = 1
MINOR = 2
TINY = 0

STRING = [MAJOR, MINOR, TINY].join('.')
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Rails
module VERSION #:nodoc:
MAJOR = 2
MINOR = 1
MINOR = 2
TINY = 0

STRING = [MAJOR, MINOR, TINY].join('.')
Expand Down

0 comments on commit 5f86451

Please sign in to comment.