From c0bc9ce38c6528916f9dd440984a386511e4297d Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 25 Feb 2013 08:31:50 -0600 Subject: Preparing for 4.0.0.beta1 release --- RAILS_VERSION | 2 +- actionmailer/CHANGELOG.md | 2 +- actionmailer/lib/action_mailer/version.rb | 2 +- actionpack/CHANGELOG.md | 2 +- actionpack/lib/action_pack/version.rb | 2 +- activemodel/CHANGELOG.md | 2 +- activemodel/lib/active_model/version.rb | 2 +- activerecord/CHANGELOG.md | 2 +- activerecord/lib/active_record/version.rb | 2 +- activesupport/CHANGELOG.md | 2 +- activesupport/lib/active_support/version.rb | 2 +- guides/CHANGELOG.md | 2 +- railties/CHANGELOG.md | 2 +- railties/lib/rails/version.rb | 2 +- version.rb | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/RAILS_VERSION b/RAILS_VERSION index e1e048d8f0..14e1b44259 100644 --- a/RAILS_VERSION +++ b/RAILS_VERSION @@ -1 +1 @@ -4.0.0.beta +4.0.0.beta1 diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md index 7e57fb39f3..3907e93097 100644 --- a/actionmailer/CHANGELOG.md +++ b/actionmailer/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.0.0 (unreleased) ## +## Rails 4.0.0.beta1 (February 25, 2013) ## * Allow passing interpolations to `#default_i18n_subject`, e.g.: diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb index 0cb5dc6d64..997046b971 100644 --- a/actionmailer/lib/action_mailer/version.rb +++ b/actionmailer/lib/action_mailer/version.rb @@ -3,7 +3,7 @@ module ActionMailer MAJOR = 4 MINOR = 0 TINY = 0 - PRE = "beta" + PRE = "beta1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index 5be7f34331..5197d944b1 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.0.0 (unreleased) ## +## Rails 4.0.0.beta1 (February 25, 2013) ## * Fix `respond_to` not using formats that have no block if all is present. *Michael Grosser* diff --git a/actionpack/lib/action_pack/version.rb b/actionpack/lib/action_pack/version.rb index 94cbc8e478..5c87a9cd7c 100644 --- a/actionpack/lib/action_pack/version.rb +++ b/actionpack/lib/action_pack/version.rb @@ -3,7 +3,7 @@ module ActionPack MAJOR = 4 MINOR = 0 TINY = 0 - PRE = "beta" + PRE = "beta1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md index 416922cb89..227374b331 100644 --- a/activemodel/CHANGELOG.md +++ b/activemodel/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.0.0 (unreleased) ## +## Rails 4.0.0.beta1 (February 25, 2013) ## * Add `ActiveModel::Validations::AbsenceValidator`, a validator to check the absence of attributes. diff --git a/activemodel/lib/active_model/version.rb b/activemodel/lib/active_model/version.rb index e195c12a4d..7586b02037 100644 --- a/activemodel/lib/active_model/version.rb +++ b/activemodel/lib/active_model/version.rb @@ -3,7 +3,7 @@ module ActiveModel MAJOR = 4 MINOR = 0 TINY = 0 - PRE = "beta" + PRE = "beta1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index ecdf829823..e244b7ff8b 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.0.0 (unreleased) ## +## Rails 4.0.0.beta1 (February 25, 2013) ## * Fixing issue #8345. Now throwing an error when one attempts to touch a new object that has not yet been persisted. For instance: diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb index 0c35adc11d..c0471bb506 100644 --- a/activerecord/lib/active_record/version.rb +++ b/activerecord/lib/active_record/version.rb @@ -3,7 +3,7 @@ module ActiveRecord MAJOR = 4 MINOR = 0 TINY = 0 - PRE = "beta" + PRE = "beta1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index b07ab749a3..97b3344db0 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.0.0 (unreleased) ## +## Rails 4.0.0.beta1 (February 25, 2013) ## * Prevent `DateTime#change` from truncating the second fraction, when seconds do not need to be changed. diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 8a8f8f946d..ec0967fdd7 100644 --- a/activesupport/lib/active_support/version.rb +++ b/activesupport/lib/active_support/version.rb @@ -3,7 +3,7 @@ module ActiveSupport MAJOR = 4 MINOR = 0 TINY = 0 - PRE = "beta" + PRE = "beta1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end diff --git a/guides/CHANGELOG.md b/guides/CHANGELOG.md index e9f7ff9d68..a9595d1f15 100644 --- a/guides/CHANGELOG.md +++ b/guides/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.0.0 (unreleased) ## +## Rails 4.0.0.beta1 (unreleased) ## * Split Validations and Callbacks guide into two. *Steve Klabnik* diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index fc362837d6..5efdbfecc6 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.0.0 (unreleased) ## +## Rails 4.0.0.beta1 (February 25, 2013) ## * Improve `rake stats` for JavaScript and CoffeeScript: ignore block comments and calculates number of functions. diff --git a/railties/lib/rails/version.rb b/railties/lib/rails/version.rb index ec878f9dcf..87fc7690ac 100644 --- a/railties/lib/rails/version.rb +++ b/railties/lib/rails/version.rb @@ -3,7 +3,7 @@ module Rails MAJOR = 4 MINOR = 0 TINY = 0 - PRE = "beta" + PRE = "beta1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end diff --git a/version.rb b/version.rb index ec878f9dcf..87fc7690ac 100644 --- a/version.rb +++ b/version.rb @@ -3,7 +3,7 @@ module Rails MAJOR = 4 MINOR = 0 TINY = 0 - PRE = "beta" + PRE = "beta1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end -- cgit v1.2.3