summaryrefslogtreecommitdiff
path: root/ext/psych/lib/psych/versions.rb
blob: b9e8d9ef1103af3d9d192b9f7df3366d2f26f2f8 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Psych
  # The version of Psych you are using
  VERSION = '5.1.2'

  if RUBY_ENGINE == 'jruby'
    DEFAULT_SNAKEYAML_VERSION = '2.7'.freeze
  end
end