Skip to content

Commit bd6ccff

Browse files
committed
Preparing for 4.2.10.rc1 release
1 parent 2ce72c8 commit bd6ccff

File tree

11 files changed

+48
-48
lines changed

11 files changed

+48
-48
lines changed

Gemfile.lock

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -14,54 +14,54 @@ GIT
1414
PATH
1515
remote: .
1616
specs:
17-
actionmailer (4.2.9)
18-
actionpack (= 4.2.9)
19-
actionview (= 4.2.9)
20-
activejob (= 4.2.9)
17+
actionmailer (4.2.10.rc1)
18+
actionpack (= 4.2.10.rc1)
19+
actionview (= 4.2.10.rc1)
20+
activejob (= 4.2.10.rc1)
2121
mail (~> 2.5, >= 2.5.4)
2222
rails-dom-testing (~> 1.0, >= 1.0.5)
23-
actionpack (4.2.9)
24-
actionview (= 4.2.9)
25-
activesupport (= 4.2.9)
23+
actionpack (4.2.10.rc1)
24+
actionview (= 4.2.10.rc1)
25+
activesupport (= 4.2.10.rc1)
2626
rack (~> 1.6)
2727
rack-test (~> 0.6.2)
2828
rails-dom-testing (~> 1.0, >= 1.0.5)
2929
rails-html-sanitizer (~> 1.0, >= 1.0.2)
30-
actionview (4.2.9)
31-
activesupport (= 4.2.9)
30+
actionview (4.2.10.rc1)
31+
activesupport (= 4.2.10.rc1)
3232
builder (~> 3.1)
3333
erubis (~> 2.7.0)
3434
rails-dom-testing (~> 1.0, >= 1.0.5)
3535
rails-html-sanitizer (~> 1.0, >= 1.0.3)
36-
activejob (4.2.9)
37-
activesupport (= 4.2.9)
36+
activejob (4.2.10.rc1)
37+
activesupport (= 4.2.10.rc1)
3838
globalid (>= 0.3.0)
39-
activemodel (4.2.9)
40-
activesupport (= 4.2.9)
39+
activemodel (4.2.10.rc1)
40+
activesupport (= 4.2.10.rc1)
4141
builder (~> 3.1)
42-
activerecord (4.2.9)
43-
activemodel (= 4.2.9)
44-
activesupport (= 4.2.9)
42+
activerecord (4.2.10.rc1)
43+
activemodel (= 4.2.10.rc1)
44+
activesupport (= 4.2.10.rc1)
4545
arel (~> 6.0)
46-
activesupport (4.2.9)
46+
activesupport (4.2.10.rc1)
4747
i18n (~> 0.7)
4848
minitest (~> 5.1)
4949
thread_safe (~> 0.3, >= 0.3.4)
5050
tzinfo (~> 1.1)
51-
rails (4.2.9)
52-
actionmailer (= 4.2.9)
53-
actionpack (= 4.2.9)
54-
actionview (= 4.2.9)
55-
activejob (= 4.2.9)
56-
activemodel (= 4.2.9)
57-
activerecord (= 4.2.9)
58-
activesupport (= 4.2.9)
51+
rails (4.2.10.rc1)
52+
actionmailer (= 4.2.10.rc1)
53+
actionpack (= 4.2.10.rc1)
54+
actionview (= 4.2.10.rc1)
55+
activejob (= 4.2.10.rc1)
56+
activemodel (= 4.2.10.rc1)
57+
activerecord (= 4.2.10.rc1)
58+
activesupport (= 4.2.10.rc1)
5959
bundler (>= 1.3.0, < 2.0)
60-
railties (= 4.2.9)
60+
railties (= 4.2.10.rc1)
6161
sprockets-rails
62-
railties (4.2.9)
63-
actionpack (= 4.2.9)
64-
activesupport (= 4.2.9)
62+
railties (4.2.10.rc1)
63+
actionpack (= 4.2.10.rc1)
64+
activesupport (= 4.2.10.rc1)
6565
rake (>= 0.8.7)
6666
thor (>= 0.18.1, < 2.0)
6767

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.2.9
1+
4.2.10.rc1

actionmailer/lib/action_mailer/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 9
11-
PRE = nil
10+
TINY = 10
11+
PRE = "rc1"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

actionpack/lib/action_pack/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 9
11-
PRE = nil
10+
TINY = 10
11+
PRE = "rc1"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

actionview/lib/action_view/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 9
11-
PRE = nil
10+
TINY = 10
11+
PRE = "rc1"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

activejob/lib/active_job/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 9
11-
PRE = nil
10+
TINY = 10
11+
PRE = "rc1"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

activemodel/lib/active_model/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 9
11-
PRE = nil
10+
TINY = 10
11+
PRE = "rc1"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

activerecord/lib/active_record/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 9
11-
PRE = nil
10+
TINY = 10
11+
PRE = "rc1"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

activesupport/lib/active_support/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 9
11-
PRE = nil
10+
TINY = 10
11+
PRE = "rc1"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

railties/lib/rails/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 9
11-
PRE = nil
10+
TINY = 10
11+
PRE = "rc1"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 9
11-
PRE = nil
10+
TINY = 10
11+
PRE = "rc1"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

0 commit comments

Comments
 (0)