From 34194da6d9f8ed25f274e0ebb098dc9e95bcf547 Mon Sep 17 00:00:00 2001 From: Fred Hebert Date: Thu, 1 Jul 2021 15:07:08 +0000 Subject: [PATCH] bump to 2.5.2 --- README.md | 6 +++++- mix.exs | 2 +- src/recon.app.src | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 86d97b1..0cefdfc 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Current Status [![Build Status](https://github.com/ferd/recon/workflows/build/badge.svg)](https://github.com/ferd/recon) -Versions supported: OTP-17 and up. Support of R16B03-1 down to R15B02 is best effort. Builds with Rebar3 require OTP-17.1 and up because that's what the tool supports. +Versions supported: OTP-18 and up. Support of OTP-17 down to R15B02 is best effort. Builds with Rebar3 require OTP-18.3 and up because that's what the build tools support. Testing may eventually clamp up to OTP-supported releases (current and the two prior). Changelog --------- @@ -27,6 +27,10 @@ all stable changes of the first version of Recon. *2.x* +- 2.5.2 + - [Increase Dialyzer strictness](https://github.com/ferd/recon/pull/88) + - [Accumulate all block entries in `format_blocks`](https://github.com/ferd/recon/pull/83) + - [option `io_server` can also be an `atom()` in traces doc](https://github.com/ferd/recon/pull/80) - 2.5.1 - Fix support for extra messages in traces (thanks to Péter Gömöri) - Fix some typespecs for match specs (thanks to @chenduo) diff --git a/mix.exs b/mix.exs index fba78d7..3676767 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.1", + version: "2.5.2", language: :erlang, deps: [] ] diff --git a/src/recon.app.src b/src/recon.app.src index 4f36228..0fc4df5 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.1"}, + {vsn, "2.5.2"}, {modules, [recon, recon_alloc, recon_lib, recon_trace, recon_rec]}, {registered, []}, {applications, [kernel, stdlib]},