From 685b823a15aa7d018c32d40439edc049ad40b6ab Mon Sep 17 00:00:00 2001 From: Fred Hebert Date: Tue, 5 Sep 2023 13:36:46 +0000 Subject: [PATCH] Bump to 2.5.4 --- CHANGELOG.md | 3 +++ mix.exs | 2 +- src/recon.app.src | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bdb590a..394edf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ Branches are organized by version. `master` contains the bleeding edge, `2.x` contains all stable changes up to the latest release of v2, and `1.x` contains all stable changes of the first version of Recon. +## 2.5.4 + - [Include `erts_mmap` in snapshots to help debug memory issues](https://github.com/ferd/recon/pull/106) (thanks to @garazdawi) + ## 2.5.3 - [Handle dead processes in `recon:info/2` types and edge cases](https://github.com/ferd/recon/pull/97) - [Reworking documentation structure to support `ex_doc` and fit in with hex standard](https://github.com/ferd/recon/pull/103) diff --git a/mix.exs b/mix.exs index bd69784..770efa8 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Recon.MixProject do [ app: :recon, description: "Diagnostic tools for production use", - version: "2.5.3", + version: "2.5.4", language: :erlang, deps: [] ] diff --git a/src/recon.app.src b/src/recon.app.src index 9fab2f5..97705b2 100644 --- a/src/recon.app.src +++ b/src/recon.app.src @@ -1,6 +1,6 @@ {application, recon, [{description, "Diagnostic tools for production use"}, - {vsn, "2.5.3"}, + {vsn, "2.5.4"}, {modules, [recon, recon_alloc, recon_lib, recon_trace, recon_rec]}, {registered, []}, {applications, [kernel, stdlib]},