From a1ce74e2ade6c1a85a2b8fbbde36029572486ef9 Mon Sep 17 00:00:00 2001 From: Osama Sayegh Date: Wed, 23 Feb 2022 12:33:57 +0300 Subject: [PATCH] Bump version to 3.0.0 (#526) Bumping the major version because 3e6f7e5 introduces a number of breaking changes to the abstract, memory and redis stores API, and also replaces the `snapshot_limit` config option with `max_snapshot_groups` and `max_snapshots_per_group`. --- CHANGELOG.md | 4 ++++ lib/mini_profiler/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8c2565b..44753664 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 3.0.0 - 2022-02-24 + +- PERF: Improve snapshots page performance (#518) (introduces breaking changes to the API of `AbstractStore`, `MemoryStore` and `RedisStore`, and removes the `snapshots_limit` config option.) + ## 2.3.4 - 2022-02-23 - [FEATURE] Add cookie path support for subfolder sites diff --git a/lib/mini_profiler/version.rb b/lib/mini_profiler/version.rb index 2857b26f..2e53994f 100644 --- a/lib/mini_profiler/version.rb +++ b/lib/mini_profiler/version.rb @@ -2,7 +2,7 @@ module Rack class MiniProfiler - VERSION = '2.3.4' + VERSION = '3.0.0' SOURCE_CODE_URI = 'https://github.com/MiniProfiler/rack-mini-profiler' end end