Skip to content

Commit 4aec462

Browse files
committed
Release v0.18.0
1 parent 795deb4 commit 4aec462

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## v0.18.0 (2026-06-02)
4+
5+
* Add support for the `Policy` registry resource: signed organization dependency policies that opted-in clients honor at resolution time.
6+
* Add `hex_repo:get_policy/2` to fetch and verify a policy resource from a repository.
7+
* Add `hex_registry:build_policy/2`, `hex_registry:unpack_policy/4`, `hex_registry:encode_policy/1`, and `hex_registry:decode_policy/3`.
8+
39
## v0.17.0 (2026-05-20)
410

511
* Add `aliases` field to `SecurityAdvisory` proto for cross-referencing advisories (e.g. GHSA/CVE pairs).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ Add to `rebar.config`:
221221
222222
```erlang
223223
{deps, [
224-
{hex_core, "0.17.0"}
224+
{hex_core, "0.18.0"}
225225
]}
226226
```
227227
@@ -232,7 +232,7 @@ Add to `mix.exs`:
232232
```elixir
233233
defp deps do
234234
[
235-
{:hex_core, "~> 0.17.0"}
235+
{:hex_core, "~> 0.18.0"}
236236
]
237237
end
238238
```

src/hex_core.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, hex_core, [
22
{description, "Reference implementation of Hex specifications"},
3-
{vsn, "0.17.0"},
3+
{vsn, "0.18.0"},
44
{registered, []},
55
{applications, [kernel, stdlib, inets, ssl, ssh]},
66
{licenses, ["Apache-2.0"]},

src/hex_core.hrl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-define(HEX_CORE_VERSION, "0.17.0").
1+
-define(HEX_CORE_VERSION, "0.18.0").

0 commit comments

Comments
 (0)