From 0df50fb53d6b84d5d072b3647c5fdf296c18eaa5 Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Fri, 29 Jan 2021 18:51:12 +0100 Subject: [PATCH] Drop Rails 5.2 support Rails 6.1 has been released --- .github/workflows/ci.yml | 1 - README.md | 3 ++- alchemy_cms.gemspec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a80d49b7e..ba3fb17b00 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,6 @@ jobs: fail-fast: false matrix: rails: - - '5.2' - '6.0' ruby: - '2.5.x' diff --git a/README.md b/README.md index 59973ba072..60ade970b4 100644 --- a/README.md +++ b/README.md @@ -51,8 +51,9 @@ or visit the existing demo at https://alchemy-demo.herokuapp.com ## 🚂 Rails Version -**This version of AlchemyCMS runs with Rails 5.2 and Rails 6.0** +**This version of AlchemyCMS runs with Rails 6.0** +* For a Rails 5.2 compatible version use the [`5.2-stable` branch](https://github.com/AlchemyCMS/alchemy_cms/tree/5.2-stable). * For a Rails 5.0 or 5.1 compatible version use the [`4.5-stable` branch](https://github.com/AlchemyCMS/alchemy_cms/tree/4.5-stable). * For a Rails 4.2 compatible version use the [`3.6-stable` branch](https://github.com/AlchemyCMS/alchemy_cms/tree/3.6-stable). * For a Rails 4.0/4.1 compatible version use the [`3.1-stable` branch](https://github.com/AlchemyCMS/alchemy_cms/tree/3.1-stable). diff --git a/alchemy_cms.gemspec b/alchemy_cms.gemspec index e30add137b..c80edf17e1 100644 --- a/alchemy_cms.gemspec +++ b/alchemy_cms.gemspec @@ -32,7 +32,7 @@ Gem::Specification.new do |gem| gem.add_runtime_dependency 'kaminari', ['~> 1.1'] gem.add_runtime_dependency 'originator', ['~> 3.1'] gem.add_runtime_dependency 'non-stupid-digest-assets', ['~> 1.0.8'] - gem.add_runtime_dependency 'rails', ['>= 5.2.0', '< 6.1'] + gem.add_runtime_dependency 'rails', ['>= 6.0', '< 6.1'] gem.add_runtime_dependency 'ransack', ['>= 1.8', '< 3.0'] gem.add_runtime_dependency 'request_store', ['~> 1.2'] gem.add_runtime_dependency 'responders', ['>= 2.0', '< 4.0']