diff --git a/CHANGELOG.md b/CHANGELOG.md
index 62502787a3136d49cee5b78fb78e4804792beb3c..07b0eb35f1b255ca6373b3bf22280efe385b0c03 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## 0.3.2
+
+* Use tags for better appsignal metrics
+* Require Appsignal 2.9 to avoid probe registration problems
+
 ## 0.3.1
 
 * Added Appsignal counters for probe calls and scheduling probe call tasks in particular.
diff --git a/Gemfile b/Gemfile
index 337fa4a2a11e02547e2349d4a2dadfe456e2a4ff..b6a6ae7f184f64c4869d2e81f4c950de56a1c5f3 100644
--- a/Gemfile
+++ b/Gemfile
@@ -9,7 +9,7 @@ gem 'roqua_styleguide', git: 'https://gitlab.roqua.nl/roqua/styleguide.git'
 group :test do
   gem 'actionpack', '>= 4.0'
   gem 'active_interaction', '~> 3.0'
-  gem 'appsignal', '~> 2.9.6'
+  gem 'appsignal', '~> 2.9.8'
   gem 'climate_control' # For ENV modification in specs
   gem 'combustion', '~> 0.5.2'
   gem 'fakefs', require: 'fakefs/safe'
diff --git a/Gemfile.lock b/Gemfile.lock
index bb7827c86cbffbbe9f9ae299cae3d39c3df032a4..4f16bb0458b142b1211b6b0e5dec6b15c2525a26 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -8,9 +8,10 @@ GIT
 PATH
   remote: .
   specs:
-    roqua-support (0.3.1)
+    roqua-support (0.3.2)
       active_interaction (~> 3.0)
       activesupport (>= 3.2, < 6)
+      appsignal (~> 2.9.8)
       naught (~> 1.0)
       with_advisory_lock (~> 3.2)
 
@@ -47,7 +48,7 @@ GEM
       bundler
       rake
       thor (>= 0.14.0)
-    appsignal (2.9.6)
+    appsignal (2.9.8)
       rack
     arel (7.1.4)
     ast (2.3.0)
@@ -107,7 +108,7 @@ GEM
       coderay (~> 1.1.0)
       method_source (~> 0.8.1)
       slop (~> 3.4)
-    rack (2.0.1)
+    rack (2.0.7)
     rack-test (0.6.3)
       rack (>= 1.0)
     rails-dom-testing (2.0.2)
diff --git a/lib/roqua-support/version.rb b/lib/roqua-support/version.rb
index eddf6519ddbf97316c0929de8ba6653fae3f7dc8..22ea333384ec69eded5476711f3aaf30a175bbe3 100644
--- a/lib/roqua-support/version.rb
+++ b/lib/roqua-support/version.rb
@@ -1,5 +1,5 @@
 module Roqua
   module Support
-    VERSION = '0.3.1'.freeze
+    VERSION = '0.3.2'.freeze
   end
 end
diff --git a/roqua-support.gemspec b/roqua-support.gemspec
index 8e415282bca72fa0939e7cea1be29f20118de469..3c7485684cfe82ed2886367d3f6b0b604c65bde1 100644
--- a/roqua-support.gemspec
+++ b/roqua-support.gemspec
@@ -22,8 +22,8 @@ Gem::Specification.new do |gem|
   gem.add_dependency 'activesupport', '>= 3.2', '< 6'
   gem.add_dependency 'naught', '~> 1.0'
   gem.add_dependency 'with_advisory_lock', '~> 3.2'
+  gem.add_dependency 'appsignal', '~> 2.9.8'
 
-  gem.add_development_dependency 'appsignal', '>= 2.3.1'
   gem.add_development_dependency 'bundler', '~> 1.0'
   gem.add_development_dependency 'delayed_job_active_record'
   gem.add_development_dependency 'rake'