Skip to content

Commit c2a7685

Browse files
committed
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.
1 parent 97455fc commit c2a7685

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ Branches are organized by version. `master` contains the bleeding edge, `2.x`
55
contains all stable changes up to the latest release of v2, and `1.x` contains
66
all stable changes of the first version of Recon.
77

8+
## 2.5.6
9+
- [Add missing run-time dependency on `syntax_tools`](https://github.com/ferd/recon/pull/111)
10+
811
## 2.5.5
912
- [Fix OTP-26 compiler warnings for OTP-27](https://github.com/ferd/recon/pull/107)
1013

LICENSE

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012-2023, Fred Hebert
1+
Copyright (c) 2012-2024, Fred Hebert
22
All rights reserved.
33

44
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:
1111
list of conditions and the following disclaimer in the documentation and/or
1212
other materials provided with the distribution.
1313

14-
The names of its contributors may not be used to endorse or promote
15-
products derived from this software without specific prior written
16-
permission.
14+
Neither the name of the copyright holder nor the names of its contributors may
15+
be used to endorse or promote products derived from this software without
16+
specific prior written permission.
1717

1818
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1919
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule Recon.MixProject do
55
[
66
app: :recon,
77
description: "Diagnostic tools for production use",
8-
version: "2.5.5",
8+
version: "2.5.6",
99
language: :erlang,
1010
deps: []
1111
]

src/recon.app.src

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{application, recon,
22
[{description, "Diagnostic tools for production use"},
3-
{vsn, "2.5.5"},
3+
{vsn, "2.5.6"},
44
{modules, [recon, recon_alloc, recon_lib, recon_trace, recon_rec]},
55
{registered, []},
66
{applications, [kernel, stdlib, syntax_tools]},
77

8-
{licenses, ["BSD"]},
8+
{licenses, ["BSD-3-Clause"]},
99
{links, [{"Github", "https://github.com/ferd/recon/"},
1010
{"Documentation", "http://ferd.github.io/recon/"}]},
1111
{build_tools, ["mix", "rebar3"]},

0 commit comments

Comments
 (0)