From c2a76855be3a226a3148c0dfc21ce000b6186ef8 Mon Sep 17 00:00:00 2001 From: Fred Hebert Date: Sat, 31 Aug 2024 19:11:04 +0000 Subject: [PATCH] Bump to 2.5.6 Also normalize the license's language to the standard BSD-3-Clause as per https://spdx.org/licenses/BSD-3-Clause.html, which is the license that was already being used, but apparently had some wording differences. --- CHANGELOG.md | 3 +++ LICENSE | 8 ++++---- mix.exs | 2 +- src/recon.app.src | 4 ++-- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d107e1a..b6c1ec2 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.6 + - [Add missing run-time dependency on `syntax_tools`](https://github.com/ferd/recon/pull/111) + ## 2.5.5 - [Fix OTP-26 compiler warnings for OTP-27](https://github.com/ferd/recon/pull/107) diff --git a/LICENSE b/LICENSE index e3c8948..10ede83 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2012-2023, Fred Hebert +Copyright (c) 2012-2024, Fred Hebert All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -11,9 +11,9 @@ are permitted provided that the following conditions are met: list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - The names of its contributors may not be used to endorse or promote - products derived from this software without specific prior written - permission. + Neither the name of the copyright holder nor the names of its contributors may + be used to endorse or promote products derived from this software without + specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED diff --git a/mix.exs b/mix.exs index b332c7c..3796e23 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.5", + version: "2.5.6", language: :erlang, deps: [] ] diff --git a/src/recon.app.src b/src/recon.app.src index e55e743..33644d7 100644 --- a/src/recon.app.src +++ b/src/recon.app.src @@ -1,11 +1,11 @@ {application, recon, [{description, "Diagnostic tools for production use"}, - {vsn, "2.5.5"}, + {vsn, "2.5.6"}, {modules, [recon, recon_alloc, recon_lib, recon_trace, recon_rec]}, {registered, []}, {applications, [kernel, stdlib, syntax_tools]}, - {licenses, ["BSD"]}, + {licenses, ["BSD-3-Clause"]}, {links, [{"Github", "https://github.com/ferd/recon/"}, {"Documentation", "http://ferd.github.io/recon/"}]}, {build_tools, ["mix", "rebar3"]},