Module: DDTrace::VERSION

Defined in:
lib/ddtrace/version.rb

Constant Summary collapse

MAJOR =
1
MINOR =
14
PATCH =
0
PRE =
nil
BUILD =
nil
STRING =

PRE and BUILD above are modified for dev gems during gem build GHA workflow

[MAJOR, MINOR, PATCH, PRE, BUILD].compact.join('.')
MINIMUM_RUBY_VERSION =
'2.1.0'
MAXIMUM_RUBY_VERSION =

Restrict the installation of this gem with untested future versions of Ruby.

This prevents crashes in the native extension code and sends a clear signal to the user that this version of the gem is untested for the host Ruby version.

To allow testing with the next unreleased version of Ruby, the version check is performed as < #{MAXIMUM_RUBY_VERSION}, meaning prereleases of MAXIMUM_RUBY_VERSION are allowed but not stable MAXIMUM_RUBY_VERSION releases.

'3.4'