Skip to content

Commit 80f09f4

Browse files
authored
Merge pull request #1534 from DataDog/deprecate-2.0-docs
Declare EOL for Ruby 2.0 support
2 parents 529b37c + 2db9de1 commit 80f09f4

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

ddtrace.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
3535
if RUBY_VERSION >= '2.2.0'
3636
spec.add_dependency 'msgpack'
3737
else
38-
# msgpack 1.4 fails for Ruby 2.0 and 2.1: https://github.com/msgpack/msgpack-ruby/issues/205
38+
# msgpack 1.4 fails for Ruby 2.1: https://github.com/msgpack/msgpack-ruby/issues/205
3939
spec.add_dependency 'msgpack', '< 1.4'
4040
end
4141

docs/GettingStarted.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ To contribute, check out the [contribution guidelines][contribution docs] and [d
101101
| | | 2.3 | Full | Latest |
102102
| | | 2.2 | Full | Latest |
103103
| | | 2.1 | Full | Latest |
104-
| | | 2.0 | Deprecated | < 0.50.0 |
104+
| | | 2.0 | EOL since June 7th, 2021 | < 0.50.0 |
105105
| | | 1.9.3 | EOL since August 6th, 2020 | < 0.27.0 |
106106
| | | 1.9.1 | EOL since August 6th, 2020 | < 0.27.0 |
107107
| JRuby | https://www.jruby.org | 9.2 | Full | Latest |
@@ -1679,8 +1679,6 @@ Where `options` is an optional `Hash` that accepts the following parameters:
16791679
| --- | ----------- | ------- |
16801680
| `service_name` | Service name for `sequel` instrumentation | Name of database adapter (e.g. `'mysql2'`) |
16811681

1682-
Only Ruby 2.0+ is supported.
1683-
16841682
**Configuring databases to use different settings**
16851683

16861684
If you use multiple databases with Sequel, you can give each of them different settings by configuring their respective `Sequel::Database` objects:

lib/ddtrace/version.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ module VERSION
77

88
STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
99

10-
# Support for Ruby < 2.1 is currently deprecated in the tracer.
11-
# Support will be dropped in the near future.
12-
MINIMUM_RUBY_VERSION = '2.0.0'.freeze
10+
MINIMUM_RUBY_VERSION = '2.1.0'.freeze
1311

1412
# Ruby 3.2 is not supported: Ruby 3.x support as implemented using *args
1513
# needs ruby2_keywords to continue working, yet the scheduled removal of

0 commit comments

Comments
 (0)