From 3a1345c9e920b0b635529ae7ac08ff1d7dd5bd0f Mon Sep 17 00:00:00 2001 From: Hartley McGuire Date: Wed, 18 Feb 2026 11:13:48 -0500 Subject: [PATCH] Preparing for 0.5.0 release --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- lib/app_profiler/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 360bbd6..4322c95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.5.0] - 2026-02-18 + +- Enable changing the query parameter used to trigger profiling (#199) +- Use Rails' error reporting API if available (#197) +- Eagerly load classes which would be loaded during a request (#198) + ## [0.4.0] - 2025-04-10 - Add duration attribute to profile object (#166) diff --git a/Gemfile.lock b/Gemfile.lock index 13b3743..0e2f3f8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - app_profiler (0.4.0) + app_profiler (0.5.0) activesupport (>= 5.2) rack stackprof (~> 0.2) diff --git a/lib/app_profiler/version.rb b/lib/app_profiler/version.rb index 1446989..8d8e39c 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.4.0" + VERSION = "0.5.0" end