Skip to content

Commit c338c66

Browse files
committed
Preparing for 5.1.3 release
1 parent 4aaa053 commit c338c66

File tree

24 files changed

+95
-45
lines changed

24 files changed

+95
-45
lines changed

Gemfile.lock

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -26,58 +26,58 @@ GIT
2626
PATH
2727
remote: .
2828
specs:
29-
actioncable (5.1.3.rc3)
30-
actionpack (= 5.1.3.rc3)
29+
actioncable (5.1.3)
30+
actionpack (= 5.1.3)
3131
nio4r (~> 2.0)
3232
websocket-driver (~> 0.6.1)
33-
actionmailer (5.1.3.rc3)
34-
actionpack (= 5.1.3.rc3)
35-
actionview (= 5.1.3.rc3)
36-
activejob (= 5.1.3.rc3)
33+
actionmailer (5.1.3)
34+
actionpack (= 5.1.3)
35+
actionview (= 5.1.3)
36+
activejob (= 5.1.3)
3737
mail (~> 2.5, >= 2.5.4)
3838
rails-dom-testing (~> 2.0)
39-
actionpack (5.1.3.rc3)
40-
actionview (= 5.1.3.rc3)
41-
activesupport (= 5.1.3.rc3)
39+
actionpack (5.1.3)
40+
actionview (= 5.1.3)
41+
activesupport (= 5.1.3)
4242
rack (~> 2.0)
4343
rack-test (~> 0.6.3)
4444
rails-dom-testing (~> 2.0)
4545
rails-html-sanitizer (~> 1.0, >= 1.0.2)
46-
actionview (5.1.3.rc3)
47-
activesupport (= 5.1.3.rc3)
46+
actionview (5.1.3)
47+
activesupport (= 5.1.3)
4848
builder (~> 3.1)
4949
erubi (~> 1.4)
5050
rails-dom-testing (~> 2.0)
5151
rails-html-sanitizer (~> 1.0, >= 1.0.3)
52-
activejob (5.1.3.rc3)
53-
activesupport (= 5.1.3.rc3)
52+
activejob (5.1.3)
53+
activesupport (= 5.1.3)
5454
globalid (>= 0.3.6)
55-
activemodel (5.1.3.rc3)
56-
activesupport (= 5.1.3.rc3)
57-
activerecord (5.1.3.rc3)
58-
activemodel (= 5.1.3.rc3)
59-
activesupport (= 5.1.3.rc3)
55+
activemodel (5.1.3)
56+
activesupport (= 5.1.3)
57+
activerecord (5.1.3)
58+
activemodel (= 5.1.3)
59+
activesupport (= 5.1.3)
6060
arel (~> 8.0)
61-
activesupport (5.1.3.rc3)
61+
activesupport (5.1.3)
6262
concurrent-ruby (~> 1.0, >= 1.0.2)
6363
i18n (~> 0.7)
6464
minitest (~> 5.1)
6565
tzinfo (~> 1.1)
66-
rails (5.1.3.rc3)
67-
actioncable (= 5.1.3.rc3)
68-
actionmailer (= 5.1.3.rc3)
69-
actionpack (= 5.1.3.rc3)
70-
actionview (= 5.1.3.rc3)
71-
activejob (= 5.1.3.rc3)
72-
activemodel (= 5.1.3.rc3)
73-
activerecord (= 5.1.3.rc3)
74-
activesupport (= 5.1.3.rc3)
66+
rails (5.1.3)
67+
actioncable (= 5.1.3)
68+
actionmailer (= 5.1.3)
69+
actionpack (= 5.1.3)
70+
actionview (= 5.1.3)
71+
activejob (= 5.1.3)
72+
activemodel (= 5.1.3)
73+
activerecord (= 5.1.3)
74+
activesupport (= 5.1.3)
7575
bundler (>= 1.3.0)
76-
railties (= 5.1.3.rc3)
76+
railties (= 5.1.3)
7777
sprockets-rails (>= 2.0.0)
78-
railties (5.1.3.rc3)
79-
actionpack (= 5.1.3.rc3)
80-
activesupport (= 5.1.3.rc3)
78+
railties (5.1.3)
79+
actionpack (= 5.1.3)
80+
activesupport (= 5.1.3)
8181
method_source
8282
rake (>= 0.8.7)
8383
thor (>= 0.18.1, < 2.0)

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.3.rc3
1+
5.1.3

actioncable/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.1.3 (August 03, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.1.3.rc3 (July 31, 2017) ##
27

38
* No changes.

actioncable/lib/action_cable/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 1
1010
TINY = 3
11-
PRE = "rc3"
11+
PRE = nil
1212

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

actioncable/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "actioncable",
3-
"version": "5.1.3-rc3",
3+
"version": "5.1.3",
44
"description": "WebSocket framework for Ruby on Rails.",
55
"main": "lib/assets/compiled/action_cable.js",
66
"files": [

actionmailer/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.1.3 (August 03, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.1.3.rc3 (July 31, 2017) ##
27

38
* No changes.

actionmailer/lib/action_mailer/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 1
1010
TINY = 3
11-
PRE = "rc3"
11+
PRE = nil
1212

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

actionpack/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.1.3 (August 03, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.1.3.rc3 (July 31, 2017) ##
27

38
* No changes.

actionpack/lib/action_pack/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 1
1010
TINY = 3
11-
PRE = "rc3"
11+
PRE = nil
1212

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

actionview/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.1.3 (August 03, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.1.3.rc3 (July 31, 2017) ##
27

38
* No changes.

actionview/lib/action_view/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 1
1010
TINY = 3
11-
PRE = "rc3"
11+
PRE = nil
1212

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

actionview/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rails-ujs",
3-
"version": "5.1.3-rc3",
3+
"version": "5.1.3",
44
"description": "Ruby on Rails unobtrusive scripting adapter",
55
"main": "lib/assets/compiled/rails-ujs.js",
66
"files": [

activejob/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.1.3 (August 03, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.1.3.rc3 (July 31, 2017) ##
27

38
* No changes.

activejob/lib/active_job/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 1
1010
TINY = 3
11-
PRE = "rc3"
11+
PRE = nil
1212

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

activemodel/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.1.3 (August 03, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.1.3.rc3 (July 31, 2017) ##
27

38
* No changes.

activemodel/lib/active_model/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 1
1010
TINY = 3
11-
PRE = "rc3"
11+
PRE = nil
1212

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

activerecord/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.1.3 (August 03, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.1.3.rc3 (July 31, 2017) ##
27

38
* No changes.

activerecord/lib/active_record/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 1
1010
TINY = 3
11-
PRE = "rc3"
11+
PRE = nil
1212

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

activesupport/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.1.3 (August 03, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.1.3.rc3 (July 31, 2017) ##
27

38
* Fix modulo operations involving durations

activesupport/lib/active_support/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 1
1010
TINY = 3
11-
PRE = "rc3"
11+
PRE = nil
1212

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

guides/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.1.3 (August 03, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.1.3.rc3 (July 31, 2017) ##
27

38
* No changes.

railties/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.1.3 (August 03, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.1.3.rc3 (July 31, 2017) ##
27

38
* No changes.

railties/lib/rails/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 1
1010
TINY = 3
11-
PRE = "rc3"
11+
PRE = nil
1212

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

version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 1
1010
TINY = 3
11-
PRE = "rc3"
11+
PRE = nil
1212

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

0 commit comments

Comments
 (0)