diff --git a/CHANGELOG.md b/CHANGELOG.md index 7740801..a35705b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## v0.10.1 (2024-06-11) + +* Update `hex_licenses` module to reflect most recent list available from SPDX. + ## v0.10.0 (2023-05-09) * Drop support for old OTP and Rebar versions. `hex_core` now requires OTP20+ and Rebar 3.15.1+. diff --git a/README.md b/README.md index f5b7e18..61ef32f 100644 --- a/README.md +++ b/README.md @@ -199,7 +199,7 @@ Add to `rebar.config`: ```erlang {deps, [ - {hex_core, "0.10.0"} + {hex_core, "0.10.1"} ]} ``` @@ -210,7 +210,7 @@ Add to `mix.exs`: ```elixir defp deps do [ - {:hex_core, "~> 0.10.0"} + {:hex_core, "~> 0.10.1"} ] end ``` diff --git a/src/hex_core.app.src b/src/hex_core.app.src index abd2236..73b161b 100644 --- a/src/hex_core.app.src +++ b/src/hex_core.app.src @@ -1,6 +1,6 @@ {application, hex_core, [ {description, "Reference implementation of Hex specifications"}, - {vsn, "0.10.0"}, + {vsn, "0.10.1"}, {registered, []}, {applications, [kernel, stdlib]}, {licenses, ["Apache-2.0"]}, diff --git a/src/hex_core.hrl b/src/hex_core.hrl index c4cf2c9..29b1762 100644 --- a/src/hex_core.hrl +++ b/src/hex_core.hrl @@ -1 +1 @@ --define(HEX_CORE_VERSION, "0.10.0"). +-define(HEX_CORE_VERSION, "0.10.1").