Sha256: 35f2fe19712d5bc6a5e39fd3dc4e69546dbd8f4676c04cf1001138352a1ad7f8

Contents?: true

Size: 930 Bytes

Versions: 1

Compression:

Stored size: 930 Bytes

Contents

# frozen_string_literal: true

module Datadog
  module CI
    module VERSION
      MAJOR = "0"
      MINOR = "4"
      PATCH = "0"
      PRE = nil
      BUILD = nil
      # PRE and BUILD above are modified for dev gems during gem build GHA workflow

      STRING = [MAJOR, MINOR, PATCH, PRE, BUILD].compact.join(".")

      MINIMUM_RUBY_VERSION = "2.1.0"

      # 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.
      MAXIMUM_RUBY_VERSION = "3.4"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
datadog-ci-0.4.0 lib/datadog/ci/version.rb