From 60b01a1281fa25846e713bdec15eb481c54e76ca Mon Sep 17 00:00:00 2001
From: Henk <henk.van.der.veen@gmail.com>
Date: Fri, 26 Mar 2021 12:03:23 +0100
Subject: [PATCH] v0.3.3: using kwargs to prepare for ruby 3.0 (and  prevent
 warnings)

---
 CHANGELOG.md                 |  4 ++++
 Gemfile.lock                 | 12 ++++++------
 lib/quby/compiler/version.rb |  2 +-
 3 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index bed2f17..97f947a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.3.3
+
+Replace `options={}` with `**options` in the builders to prevent prepare for ruby 3.0
+
 # 0.3.2
 
 * Fix slashes-after-numbers removal when question does not have a title
diff --git a/Gemfile.lock b/Gemfile.lock
index ce1c15a..218201b 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
 PATH
   remote: .
   specs:
-    quby-compiler (0.3.2)
+    quby-compiler (0.3.3)
       actionview (>= 5.0)
       activemodel (>= 5.0)
       activesupport (>= 5.0)
@@ -41,7 +41,7 @@ GEM
     concurrent-ruby (1.1.8)
     crass (1.0.6)
     diff-lcs (1.4.4)
-    dry-configurable (0.12.1)
+    dry-configurable (0.12.0)
       concurrent-ruby (~> 1.0)
       dry-core (~> 0.5, >= 0.5.0)
     dry-container (0.7.2)
@@ -57,7 +57,7 @@ GEM
       dry-core (~> 0.5, >= 0.5)
       dry-types (~> 1.5)
       ice_nine (~> 0.11)
-    dry-types (1.5.1)
+    dry-types (1.5.0)
       concurrent-ruby (~> 1.0)
       dry-container (~> 0.3)
       dry-core (~> 0.5, >= 0.5)
@@ -74,10 +74,10 @@ GEM
     mini_portile2 (2.5.0)
     minitest (5.14.4)
     naught (1.1.0)
-    nokogiri (1.11.2)
+    nokogiri (1.11.1)
       mini_portile2 (~> 2.5.0)
       racc (~> 1.4)
-    nokogumbo (2.0.5)
+    nokogumbo (2.0.3)
       nokogiri (~> 1.8, >= 1.8.4)
     pry (0.13.1)
       coderay (~> 1.1)
@@ -90,7 +90,7 @@ GEM
     rails-html-sanitizer (1.3.0)
       loofah (~> 2.3)
     rake (12.3.3)
-    redcarpet (3.5.1)
+    redcarpet (3.5.0)
     roqua-support (0.3.5)
       active_interaction (~> 3.0)
       activesupport (>= 5.1, < 6.1)
diff --git a/lib/quby/compiler/version.rb b/lib/quby/compiler/version.rb
index 0dbb974..9704063 100644
--- a/lib/quby/compiler/version.rb
+++ b/lib/quby/compiler/version.rb
@@ -1,5 +1,5 @@
 module Quby
   module Compiler
-    VERSION = "0.3.2"
+    VERSION = "0.3.3"
   end
 end
-- 
GitLab