summaryrefslogtreecommitdiff
path: root/ext/psych/lib/psych/versions.rb
blob: 57b7659b571a85ebc2257288c839d7ae2b4b3933 (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.0'

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