Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Ruby 2.2 #1455

Merged
merged 2 commits into from Mar 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -16,7 +16,6 @@ addons:
- g++-4.8

rvm:
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
Expand Down
4 changes: 2 additions & 2 deletions README.de.md
Expand Up @@ -3120,9 +3120,9 @@ thin --threaded start
Die folgenden Versionen werden offiziell unterstützt:

<dl>
<dt>Ruby 2.2</dt>
<dt>Ruby 2.3</dt>
<dd>
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
</dd>

Expand Down
4 changes: 2 additions & 2 deletions README.es.md
Expand Up @@ -3083,9 +3083,9 @@ thin --threaded start
Las siguientes versiones de Ruby son soportadas oficialmente:

<dl>
<dt>Ruby 2.2</dt>
<dt>Ruby 2.3</dt>
<dd>
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.
</dd>

Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -3050,9 +3050,9 @@ thin --threaded start

The following Ruby versions are officially supported:
<dl>
<dt>Ruby 2.2</dt>
<dt>Ruby 2.3</dt>
<dd>
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.
</dd>

Expand All @@ -3070,7 +3070,7 @@ The following Ruby versions are officially supported:
</dd>
</dl>

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.

Expand Down
4 changes: 2 additions & 2 deletions README.ru.md
Expand Up @@ -3089,9 +3089,9 @@ thin --threaded start

Следующие версии Ruby официально поддерживаются:
<dl>
<dt>Ruby 2.2</dt>
<dt>Ruby 2.3</dt>
<dd>
Версия 2.2 полностью поддерживается и рекомендуется. В настоящее время нет
Версия 2.3 полностью поддерживается и рекомендуется. В настоящее время нет
планов отказаться от официальной поддержки.
</dd>

Expand Down
2 changes: 1 addition & 1 deletion sinatra-contrib/sinatra-contrib.gemspec
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion sinatra.gemspec
Expand Up @@ -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.0'
s.add_dependency 'tilt', '~> 2.0'
Expand Down