1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Lucas Kanashiro <lucas.kanashiro@collabora.com>
Date: Wed, 27 Feb 2019 15:39:56 -0300
Subject: Remove snakeyaml hardcoded versions
Forwarded: not-needed
---
lib/psych/versions.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/psych/versions.rb b/lib/psych/versions.rb
index 22b9094..6004aeb 100644
--- a/lib/psych/versions.rb
+++ b/lib/psych/versions.rb
@@ -5,6 +5,6 @@ module Psych
VERSION = '5.0.2'
if RUBY_ENGINE == 'jruby'
- DEFAULT_SNAKEYAML_VERSION = '1.33'.freeze
+ DEFAULT_SNAKEYAML_VERSION = '1.x'.freeze
end
end
|