diff --git a/CHANGELOG.md b/CHANGELOG.md index bed2f173d29da2cd99865938a623688e30c69605..97f947ae4af6eb94b607081c294d3567223fc707 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 ce1c15a39c019414c2abe43d828a5d792ecc23a7..218201b03d6448d2096332ae870a6f980d898f3c 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 0dbb9741694aa82fccdfd26c032eae8a68b6fee2..9704063e775f11b20d9dd12c8f7db0d8f65c3b8b 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