Skip to content

Commit

Permalink
Bump to 2.5.6
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ferd committed Aug 31, 2024
1 parent 97455fc commit c2a7685
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
8 changes: 4 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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: []
]
Expand Down
4 changes: 2 additions & 2 deletions src/recon.app.src
Original file line number Diff line number Diff line change
@@ -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"]},
Expand Down

0 comments on commit c2a7685

Please sign in to comment.