diff --git a/CHANGELOG.md b/CHANGELOG.md index b1eeb00..69e3295 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 14a5127..e473106 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 38e084a..d3ccb95 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