From 63c0cbf5dc555b8c8ea12186f793136f03c8291d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eloy=20P=C3=A9rez?= Date: Fri, 13 Mar 2020 21:28:27 +0100 Subject: [PATCH] Drop support for Ruby 2.2 (#1455) Drop support for Ruby 2.2 --- README.de.md | 4 ++-- README.es.md | 4 ++-- README.md | 6 +++--- README.ru.md | 4 ++-- sinatra-contrib/sinatra-contrib.gemspec | 2 +- sinatra.gemspec | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.de.md b/README.de.md index 3ddf149be6..d7c1fb77eb 100644 --- a/README.de.md +++ b/README.de.md @@ -3120,9 +3120,9 @@ thin --threaded start Die folgenden Versionen werden offiziell unterstützt:
-
Ruby 2.2
+
Ruby 2.3
- 2.2 wird vollständig unterstützt. Es gibt derzeit keine Pläne die + 2.3 wird vollständig unterstützt. Es gibt derzeit keine Pläne die offizielle Unterstützung zu beenden
diff --git a/README.es.md b/README.es.md index 5cd530e141..de07c3b9eb 100644 --- a/README.es.md +++ b/README.es.md @@ -3083,9 +3083,9 @@ thin --threaded start Las siguientes versiones de Ruby son soportadas oficialmente:
-
Ruby 2.2
+
Ruby 2.3
- 2.2 Es totalmente compatible y recomendado. Actualmente no hay planes + 2.3 Es totalmente compatible y recomendado. Actualmente no hay planes soltar el apoyo oficial para ello.
diff --git a/README.md b/README.md index effb719297..1dcd67ccd0 100644 --- a/README.md +++ b/README.md @@ -3052,9 +3052,9 @@ thin --threaded start The following Ruby versions are officially supported:
-
Ruby 2.2
+
Ruby 2.3
- 2.2 is fully supported and recommended. There are currently no plans to + 2.3 is fully supported and recommended. There are currently no plans to drop official support for it.
@@ -3072,7 +3072,7 @@ The following Ruby versions are officially supported:
-Versions of Ruby prior to 2.2.2 are no longer supported as of Sinatra 2.0. +Versions of Ruby prior to 2.3 are no longer supported as of Sinatra 2.1.0. We also keep an eye on upcoming Ruby versions. diff --git a/README.ru.md b/README.ru.md index b64c29fae8..827509cbf3 100644 --- a/README.ru.md +++ b/README.ru.md @@ -3089,9 +3089,9 @@ thin --threaded start Следующие версии Ruby официально поддерживаются:
-
Ruby 2.2
+
Ruby 2.3
- Версия 2.2 полностью поддерживается и рекомендуется. В настоящее время нет + Версия 2.3 полностью поддерживается и рекомендуется. В настоящее время нет планов отказаться от официальной поддержки.
diff --git a/sinatra-contrib/sinatra-contrib.gemspec b/sinatra-contrib/sinatra-contrib.gemspec index 6f683f0511..dfd110e5b2 100644 --- a/sinatra-contrib/sinatra-contrib.gemspec +++ b/sinatra-contrib/sinatra-contrib.gemspec @@ -34,7 +34,7 @@ RubyGems 2.0 or newer is required to protect against public gem pushes. You can EOF end - s.required_ruby_version = '>= 2.2.0' + s.required_ruby_version = '>= 2.3.0' s.add_dependency "sinatra", version s.add_dependency "mustermann", "~> 1.0" diff --git a/sinatra.gemspec b/sinatra.gemspec index 1eb48b9660..db5e10134d 100644 --- a/sinatra.gemspec +++ b/sinatra.gemspec @@ -46,7 +46,7 @@ RubyGems 2.0 or newer is required to protect against public gem pushes. You can EOF end - s.required_ruby_version = '>= 2.2.0' + s.required_ruby_version = '>= 2.3.0' s.add_dependency 'rack', '~> 2.2' s.add_dependency 'tilt', '~> 2.0'