diff options
author | eileencodes <eileencodes@gmail.com> | 2019-03-11 11:58:15 -0400 |
---|---|---|
committer | eileencodes <eileencodes@gmail.com> | 2019-03-11 11:58:15 -0400 |
commit | 7c87fd5635fd830905e17d3cbf1eb2a2215acedf (patch) | |
tree | 751a2f2af53bb9176c3b4d8ae418eb745aae552c /actionpack | |
parent | 4c743587ad6a31908503ab317e37d70361d49e66 (diff) | |
download | rails-7c87fd5635fd830905e17d3cbf1eb2a2215acedf.tar.gz rails-7c87fd5635fd830905e17d3cbf1eb2a2215acedf.tar.bz2 rails-7c87fd5635fd830905e17d3cbf1eb2a2215acedf.zip |
Prep release
* Update RAILS_VERSION
* Bundle
* rake update_versions
* rake changelog:header
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/CHANGELOG.md | 5 | ||||
-rw-r--r-- | actionpack/lib/action_pack/gem_version.rb | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index 8eaaee5100..2df6f5fc09 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,3 +1,8 @@ +## Rails 6.0.0.beta3 (March 11, 2019) ## + +* No changes. + + ## Rails 6.0.0.beta2 (February 25, 2019) ## * Make debug exceptions works in an environment where ActiveStorage is not loaded. diff --git a/actionpack/lib/action_pack/gem_version.rb b/actionpack/lib/action_pack/gem_version.rb index 8007cfe35b..3bbb1734d9 100644 --- a/actionpack/lib/action_pack/gem_version.rb +++ b/actionpack/lib/action_pack/gem_version.rb @@ -10,7 +10,7 @@ module ActionPack MAJOR = 6 MINOR = 0 TINY = 0 - PRE = "beta2" + PRE = "beta3" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end |