Skip to content

Commit a43ef24

Browse files
committed
Prepare for 2.3.4 release
1 parent 9a68c72 commit a43ef24

File tree

17 files changed

+31
-19
lines changed

17 files changed

+31
-19
lines changed

actionmailer/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
*2.3.4 (September 4, 2009)*
2+
3+
* Minor bug fixes.
4+
15
*2.3.3 (July 12, 2009)*
26

37
* No changes, just a version bump.

actionmailer/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s|
5454
s.rubyforge_project = "actionmailer"
5555
s.homepage = "http://www.rubyonrails.org"
5656

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

5959
s.has_rdoc = true
6060
s.requirements << 'none'

actionmailer/lib/action_mailer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActionMailer
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 3
5-
TINY = 3
5+
TINY = 4
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

actionpack/CHANGELOG

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
*2.3.4 (pending)*
1+
*2.3.4 (September 4, 2009)*
2+
3+
* Sanitize multibyte strings before escaping them with escape_once. CVE-2009-3009
24

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

actionpack/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ spec = Gem::Specification.new do |s|
7979
s.has_rdoc = true
8080
s.requirements << 'none'
8181

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

8585
s.require_path = 'lib'

actionpack/lib/action_pack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActionPack #:nodoc:
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 3
5-
TINY = 3
5+
TINY = 4
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

activerecord/CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*2.3.4 (pending)*
1+
*2.3.4 (September 4, 2009)*
22

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

activerecord/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ spec = Gem::Specification.new do |s|
192192
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
193193
end
194194

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

197197
s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite"
198198
s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite"

activerecord/lib/active_record/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActiveRecord
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 3
5-
TINY = 3
5+
TINY = 4
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

activeresource/CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*2.3.4 (pending)*
1+
*2.3.4 (September 4, 2009)*
22

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

0 commit comments

Comments
 (0)