From c59b81b21c94942fcd7852619de45821d11b9434 Mon Sep 17 00:00:00 2001 From: Dale Hamel Date: Wed, 9 Jun 2021 10:21:54 -0400 Subject: [PATCH] Bump app_profiler to 0.0.8 --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 4 ++-- lib/app_profiler/version.rb | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abb6329..ddbc2a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [Unreleased]: https://github.com/Shopify/app_profiler + +## [0.0.8] - 2021-06-09 + +- Add File Safe Regex to Profile Filename (#30) +- Bump various dependencies + ## [0.0.7] - 2021-02-19 - Add default logger for non-rails contexts (#21). diff --git a/Gemfile.lock b/Gemfile.lock index c76a29d..e70d1a3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - app_profiler (0.0.7) + app_profiler (0.0.8) activesupport (>= 5.2) rack railties (>= 5.2) @@ -137,7 +137,7 @@ GEM faraday (>= 0.17.3, < 2.0) jwt (>= 1.5, < 3.0) multi_json (~> 1.10) - stackprof (0.2.16) + stackprof (0.2.17) thor (1.0.1) thread_safe (0.3.6) tzinfo (1.2.7) diff --git a/lib/app_profiler/version.rb b/lib/app_profiler/version.rb index ef89b36..af8a134 100644 --- a/lib/app_profiler/version.rb +++ b/lib/app_profiler/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module AppProfiler - VERSION = "0.0.7" + VERSION = "0.0.8" end