diff --git a/CHANGELOG.md b/CHANGELOG.md
index 97f947ae4af6eb94b607081c294d3567223fc707..b1858646d14a700eed6d10774d317a2988822342 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,10 @@
+# 0.3.4
+
+* Added preliminary support for sliders to the v2 output.
+
 # 0.3.3
 
-Replace `options={}` with `**options` in the builders to prevent prepare for ruby 3.0
+* Replace `options={}` with `**options` in the builders to prevent prepare for ruby 3.0
 
 # 0.3.2
 
diff --git a/Gemfile.lock b/Gemfile.lock
index 218201b03d6448d2096332ae870a6f980d898f3c..5f79fbee974ea44a99a89b3bcad3247968b42d33 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
 PATH
   remote: .
   specs:
-    quby-compiler (0.3.3)
+    quby-compiler (0.3.4)
       actionview (>= 5.0)
       activemodel (>= 5.0)
       activesupport (>= 5.0)
@@ -15,20 +15,20 @@ PATH
 GEM
   remote: https://rubygems.org/
   specs:
-    actionview (6.0.3.5)
-      activesupport (= 6.0.3.5)
+    actionview (6.0.4)
+      activesupport (= 6.0.4)
       builder (~> 3.1)
       erubi (~> 1.4)
       rails-dom-testing (~> 2.0)
       rails-html-sanitizer (~> 1.1, >= 1.2.0)
     active_interaction (3.8.3)
       activemodel (>= 4, < 7)
-    activemodel (6.0.3.5)
-      activesupport (= 6.0.3.5)
-    activerecord (6.0.3.5)
-      activemodel (= 6.0.3.5)
-      activesupport (= 6.0.3.5)
-    activesupport (6.0.3.5)
+    activemodel (6.0.4)
+      activesupport (= 6.0.4)
+    activerecord (6.0.4)
+      activemodel (= 6.0.4)
+      activesupport (= 6.0.4)
+    activesupport (6.0.4)
       concurrent-ruby (~> 1.0, >= 1.0.2)
       i18n (>= 0.7, < 2)
       minitest (~> 5.1)
@@ -38,10 +38,10 @@ GEM
       rack
     builder (3.2.4)
     coderay (1.1.3)
-    concurrent-ruby (1.1.8)
+    concurrent-ruby (1.1.9)
     crass (1.0.6)
     diff-lcs (1.4.4)
-    dry-configurable (0.12.0)
+    dry-configurable (0.12.1)
       concurrent-ruby (~> 1.0)
       dry-core (~> 0.5, >= 0.5.0)
     dry-container (0.7.2)
@@ -57,27 +57,27 @@ GEM
       dry-core (~> 0.5, >= 0.5)
       dry-types (~> 1.5)
       ice_nine (~> 0.11)
-    dry-types (1.5.0)
+    dry-types (1.5.1)
       concurrent-ruby (~> 1.0)
       dry-container (~> 0.3)
       dry-core (~> 0.5, >= 0.5)
       dry-inflector (~> 0.1, >= 0.1.2)
       dry-logic (~> 1.0, >= 1.0.2)
     erubi (1.10.0)
-    i18n (1.8.9)
+    i18n (1.8.10)
       concurrent-ruby (~> 1.0)
     ice_nine (0.11.2)
-    loofah (2.9.0)
+    loofah (2.10.0)
       crass (~> 1.0.2)
       nokogiri (>= 1.5.9)
     method_source (1.0.0)
-    mini_portile2 (2.5.0)
+    mini_portile2 (2.5.3)
     minitest (5.14.4)
     naught (1.1.0)
-    nokogiri (1.11.1)
+    nokogiri (1.11.7)
       mini_portile2 (~> 2.5.0)
       racc (~> 1.4)
-    nokogumbo (2.0.3)
+    nokogumbo (2.0.5)
       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.0)
+    redcarpet (3.5.1)
     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 9704063e775f11b20d9dd12c8f7db0d8f65c3b8b..9d7bdbf5c9659442a656d0623086cb75ac445faa 100644
--- a/lib/quby/compiler/version.rb
+++ b/lib/quby/compiler/version.rb
@@ -1,5 +1,5 @@
 module Quby
   module Compiler
-    VERSION = "0.3.3"
+    VERSION = "0.3.4"
   end
 end