Skip to content

Commit

Permalink
Prepare for 2.3.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
NZKoz committed Sep 3, 2009
1 parent 9a68c72 commit a43ef24
Show file tree
Hide file tree
Showing 17 changed files with 31 additions and 19 deletions.
4 changes: 4 additions & 0 deletions actionmailer/CHANGELOG
@@ -1,3 +1,7 @@
*2.3.4 (September 4, 2009)*

* Minor bug fixes.

*2.3.3 (July 12, 2009)*

* No changes, just a version bump.
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/Rakefile
Expand Up @@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"

s.add_dependency('actionpack', '= 2.3.3' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.4' + PKG_BUILD)

s.has_rdoc = true
s.requirements << 'none'
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActionMailer
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 3
TINY = 4

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
4 changes: 3 additions & 1 deletion actionpack/CHANGELOG
@@ -1,4 +1,6 @@
*2.3.4 (pending)*
*2.3.4 (September 4, 2009)*

* Sanitize multibyte strings before escaping them with escape_once. CVE-2009-3009

* Introduce grouped_collection_select helper. #1249 [Dan Codeape, Erik Ostrom]

Expand Down
2 changes: 1 addition & 1 deletion actionpack/Rakefile
Expand Up @@ -79,7 +79,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'

s.add_dependency('activesupport', '= 2.3.3' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.4' + PKG_BUILD)
s.add_dependency('rack', '~> 1.0.0')

s.require_path = 'lib'
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 3
TINY = 4

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/CHANGELOG
@@ -1,4 +1,4 @@
*2.3.4 (pending)*
*2.3.4 (September 4, 2009)*

* PostgreSQL: XML datatype support. #1874 [Leonardo Borges]

Expand Down
2 changes: 1 addition & 1 deletion activerecord/Rakefile
Expand Up @@ -192,7 +192,7 @@ spec = Gem::Specification.new do |s|
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
end

s.add_dependency('activesupport', '= 2.3.3' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.4' + PKG_BUILD)

s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite"
s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite"
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 3
TINY = 4

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activeresource/CHANGELOG
@@ -1,4 +1,4 @@
*2.3.4 (pending)*
*2.3.4 (September 4, 2009)*

* Add support for errors in JSON format. #1956 [Fabien Jakimowicz]

Expand Down
2 changes: 1 addition & 1 deletion activeresource/Rakefile
Expand Up @@ -66,7 +66,7 @@ spec = Gem::Specification.new do |s|
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
end

s.add_dependency('activesupport', '= 2.3.3' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.4' + PKG_BUILD)

s.require_path = 'lib'
s.autorequire = 'active_resource'
Expand Down
2 changes: 1 addition & 1 deletion activeresource/lib/active_resource/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveResource
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 3
TINY = 4

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
6 changes: 6 additions & 0 deletions activesupport/CHANGELOG
@@ -1,3 +1,9 @@
*2.3.4 (September 4, 2009)*

* Introduce ActiveSupport::Multibyte.clean to clean invalid multibyte strings.

* Bug fixes

*2.3.3 (July 12, 2009)*

* JSON: +Object#to_json+ calls +as_json+ to coerce itself into something natively encodable like +Hash+, +Integer+, or +String+. Override +as_json+ instead of +to_json+ so you're JSON-library-agnostic. [Jeremy Kemper]
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 3
TINY = 4

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion railties/CHANGELOG
@@ -1,4 +1,4 @@
*2.3.4 (pending)*
*2.3.4 (September 4, 2009)*

* I18n support for plugins. #2325 [Antonio Tapiador, Sven Fuchs]

Expand Down
10 changes: 5 additions & 5 deletions railties/Rakefile
Expand Up @@ -314,11 +314,11 @@ spec = Gem::Specification.new do |s|
EOF

s.add_dependency('rake', '>= 0.8.3')
s.add_dependency('activesupport', '= 2.3.3' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.3.3' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.3' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.3.3' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.3.3' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.4' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.3.4' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.4' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.3.4' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.3.4' + PKG_BUILD)

s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/version.rb
Expand Up @@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 3
TINY = 4

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

0 comments on commit a43ef24

Please sign in to comment.