From a5fc063bb30395815cfa500c7a1f20a0c224e84d Mon Sep 17 00:00:00 2001
From: Jorn van de Beek <jornvandebeek@gmail.com>
Date: Mon, 17 Jun 2019 16:41:47 +0200
Subject: [PATCH] Bump version, fixate appsignal

---
 CHANGELOG.md                 | 5 +++++
 Gemfile                      | 2 +-
 Gemfile.lock                 | 7 ++++---
 lib/roqua-support/version.rb | 2 +-
 roqua-support.gemspec        | 2 +-
 5 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6250278..07b0eb3 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 337fa4a..b6a6ae7 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 bb7827c..4f16bb0 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 eddf651..22ea333 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 8e41528..3c74856 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'
-- 
GitLab