diff --git a/CHANGELOG.md b/CHANGELOG.md index a35705b..1eeb495 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ # CHANGELOG +## v0.10.2 (2024-06-12) + +* Fix `hex_tarball:create_docs/1` type spec. + ## v0.10.1 (2024-06-11) +* Drop support for OTP 20. * Update `hex_licenses` module to reflect most recent list available from SPDX. ## v0.10.0 (2023-05-09) diff --git a/README.md b/README.md index 61ef32f..0f6c610 100644 --- a/README.md +++ b/README.md @@ -199,7 +199,7 @@ Add to `rebar.config`: ```erlang {deps, [ - {hex_core, "0.10.1"} + {hex_core, "0.10.2"} ]} ``` @@ -210,7 +210,7 @@ Add to `mix.exs`: ```elixir defp deps do [ - {:hex_core, "~> 0.10.1"} + {:hex_core, "~> 0.10.2"} ] end ``` diff --git a/src/hex_core.app.src b/src/hex_core.app.src index 73b161b..10b41ad 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.1"}, + {vsn, "0.10.2"}, {registered, []}, {applications, [kernel, stdlib]}, {licenses, ["Apache-2.0"]}, diff --git a/src/hex_core.hrl b/src/hex_core.hrl index 29b1762..ab4808e 100644 --- a/src/hex_core.hrl +++ b/src/hex_core.hrl @@ -1 +1 @@ --define(HEX_CORE_VERSION, "0.10.1"). +-define(HEX_CORE_VERSION, "0.10.2").