From 5999874b7d405c9156fd7926da7839ca0ad8ede6 Mon Sep 17 00:00:00 2001 From: Dale Hamel Date: Wed, 15 Jun 2022 09:15:33 -0400 Subject: [PATCH] Bump app_profiler to 0.1.1 --- CHANGELOG.md | 2 ++ Gemfile.lock | 2 +- lib/app_profiler/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1eeb001..69e32950 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [Unreleased]: https://github.com/Shopify/app_profiler +## [0.1.1] - 2022-06-15 + - Support for "profile server" to support on-demand profiling via HTTP (#48) - Log info with link to speedscope during file upload (#47) diff --git a/Gemfile.lock b/Gemfile.lock index 14a51278..e4731060 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - app_profiler (0.1.0) + app_profiler (0.1.1) activesupport (>= 5.2) rack railties (>= 5.2) diff --git a/lib/app_profiler/version.rb b/lib/app_profiler/version.rb index 38e084ac..d3ccb95e 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.1.0" + VERSION = "0.1.1" end