diff --git a/CHANGELOG.md b/CHANGELOG.md index e88ac47..2190fd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## v0.11.0 (2024-12-03) + +* Use secure SSL defaults for OTP 25+. + +* Start inets and ssl applications. + ## v0.10.3 (2024-06-28) * Fix `hex_api_release:retirement_params/0` type spec. diff --git a/README.md b/README.md index efedbd3..95089e9 100644 --- a/README.md +++ b/README.md @@ -199,7 +199,7 @@ Add to `rebar.config`: ```erlang {deps, [ - {hex_core, "0.10.3"} + {hex_core, "0.11.0"} ]} ``` @@ -210,7 +210,7 @@ Add to `mix.exs`: ```elixir defp deps do [ - {:hex_core, "~> 0.10.3"} + {:hex_core, "~> 0.11.0"} ] end ``` diff --git a/src/hex_core.app.src b/src/hex_core.app.src index 9a364bd..b82f3d9 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.3"}, + {vsn, "0.11.0"}, {registered, []}, {applications, [kernel, stdlib, inets, ssl]}, {licenses, ["Apache-2.0"]}, diff --git a/src/hex_core.hrl b/src/hex_core.hrl index c6bbc53..5ee200f 100644 --- a/src/hex_core.hrl +++ b/src/hex_core.hrl @@ -1 +1 @@ --define(HEX_CORE_VERSION, "0.10.3"). +-define(HEX_CORE_VERSION, "0.11.0").